:root {
    --bg: #f7f8fb;
    --bg-surface: #ffffff;
    --bg-soft: #edf2f7;
    --text-primary: #101014;
    --text-secondary: #6b7280;
    --border: rgba(15, 23, 42, 0.08);
    --shadow-soft: 0 25px 60px rgba(15, 23, 42, 0.08);
    --shadow-hover: 0 30px 80px rgba(15, 23, 42, 0.12);
    --accent-violet: #7c3aed;
    --accent-blue: #2563eb;
    --accent-cyan: #06b6d4;
    --accent-magenta: #ec4899;
    --accent-green: #22c55e;
    --accent-orange: #f97316;
    --gradient-primary: linear-gradient(135deg, #7c3aed 0%, #2563eb 55%, #06b6d4 100%);
    --gradient-secondary: linear-gradient(135deg, #ec4899 0%, #7c3aed 100%);
    --gradient-hero: radial-gradient(circle at top left, rgba(124, 58, 237, 0.22), transparent 32%), radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.16), transparent 22%), radial-gradient(circle at 20% 80%, rgba(6, 182, 212, 0.14), transparent 24%);
    --gradient-card: linear-gradient(135deg, rgba(124, 58, 237, 0.18), rgba(37, 99, 235, 0.08));
    --gradient-surface: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --container-max: 1200px;
    --nav-height: 80px;
}

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

html {
    scroll-behavior: auto;
}

body {
    background: var(--bg);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.65;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
}

button,
a,
input,
textarea {
    outline: none;
}

::selection {
    background: rgba(124, 58, 237, 0.18);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-thumb {
    background: rgba(15, 23, 42, 0.16);
    border-radius: 999px;
}
::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.04);
}

/* Navigation */
.nav-glass {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    transition: transform 0.4s ease, background 0.4s ease, border-color 0.4s ease;
}

.nav-glass.scrolled {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(15, 23, 42, 0.1);
}

.nav-glass.hidden {
    transform: translateY(-100%);
}

.nav-container {
    width: min(1140px, calc(100% - 3rem));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-primary);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.brand-mark,
.footer-brand-mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: var(--gradient-primary);
    color: #ffffff;
    font-weight: 800;
    font-size: 1.05rem;
    box-shadow: 0 18px 45px rgba(124, 58, 237, 0.18);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

.logo-subtitle {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.logo-label {
    display: block;
    margin-top: -0.2rem;
    font-size: 0.74rem;
    color: var(--text-secondary);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-violet);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

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

.hero-copy {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.hero-description {
    font-size: 1.05rem;
    max-width: 620px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.hero-stat {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    padding: 1rem 1.2rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.hero-stat strong {
    display: block;
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.hero-stat span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-end;
    position: relative;
}

.hero-display-card {
    width: 100%;
    min-height: 420px;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(247,248,251,0.95) 100%);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 35px 90px rgba(15, 23, 42, 0.08);
}

.hero-display-card::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.12);
}

.hero-display-card::after {
    content: '';
    position: absolute;
    bottom: -12%;
    right: -14%;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(6, 182, 212, 0.12);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.2rem;
    border-radius: 20px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.05);
    color: var(--text-primary);
    animation: floatBadge 6s ease-in-out infinite alternate;
}

.hero-badge i {
    width: 24px;
    height: 24px;
    color: var(--accent-blue);
}

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

.products-section {
    padding: 4rem 0 5rem;
    background: #ffffff;
}

.product-container {
    width: min(1120px, calc(100% - 3rem));
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.product-card {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(247,248,251,0.95));
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 28px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.product-card::before {
    content: '';
    position: absolute;
    top: -16px;
    right: -18px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at top left, rgba(124, 58, 237, 0.18), transparent 55%);
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 36px 90px rgba(15, 23, 42, 0.12);
    border-color: rgba(124, 58, 237, 0.18);
    background: linear-gradient(180deg, rgba(255,255,255,1), rgba(240,247,255,1));
}

.product-card i {
    width: 32px;
    height: 32px;
    color: var(--accent-violet);
}

.product-card h3 {
    font-size: 1.2rem;
    margin: 0;
}

.product-card p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

.btn-primary,
.btn-primary-sm,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 700;
    border-radius: 999px;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #ffffff;
    padding: 1rem 2rem;
    font-size: 1rem;
    box-shadow: 0 18px 45px rgba(124, 58, 237, 0.18);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 60px rgba(124, 58, 237, 0.22);
}

.btn-primary-sm {
    background: var(--gradient-secondary);
    color: #ffffff;
    padding: 0.85rem 1.6rem;
    font-size: 0.9rem;
}

.btn-secondary {
    background: #ffffff;
    color: var(--text-primary);
    border-color: rgba(15, 23, 42, 0.12);
    padding: 1rem 1.9rem;
    font-size: 0.95rem;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.btn-secondary:hover {
    border-color: var(--accent-violet);
    color: var(--text-primary);
}

.hero {
    position: relative;
    min-height: calc(100vh - var(--nav-height));
    padding: calc(var(--nav-height) + 3rem) 2rem 4rem;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg);
    background-image: var(--gradient-hero);
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.65;
    pointer-events: none;
}

.hero::before {
    width: 560px;
    height: 560px;
    background: radial-gradient(circle at top left, rgba(124, 58, 237, 0.16), transparent 52%);
    top: -12%;
    left: -8%;
}

.hero::after {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle at bottom right, rgba(6, 182, 212, 0.18), transparent 48%);
    bottom: -15%;
    right: 12%;
}

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

.hero-video {
    width: 120%;
    height: 120%;
    object-fit: cover;
    transform: translate(-10%, -10%);
    opacity: 0.28;
    filter: brightness(1.05) contrast(1.05);
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.32) 0%, rgba(247,248,251,0.92) 60%);
}

.hero-glow,
.hero-glow-2 {
    position: absolute;
    width: 28rem;
    height: 28rem;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.45;
    z-index: 1;
    animation: floatGlow 9s ease-in-out infinite alternate;
}

.hero-glow {
    top: 10%;
    left: 10%;
    background: rgba(124, 58, 237, 0.18);
}

.hero-glow-2 {
    bottom: 8%;
    right: 8%;
    background: rgba(6, 182, 212, 0.2);
    animation-delay: -4.5s;
}

@keyframes floatGlow {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(15px) scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(700px, 100%);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1.35rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-violet);
    background: rgba(124, 58, 237, 0.09);
    border: 1px solid rgba(124, 58, 237, 0.14);
    width: fit-content;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-blue);
    border-radius: 50%;
    box-shadow: 0 0 18px rgba(37, 99, 235, 0.35);
    animation: blink 2s infinite;
}

.hero-title {
    font-size: clamp(3.4rem, 7vw, 5.8rem);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.04em;
    max-width: 720px;
}
.hero-title span {
    display: block;
}

.text-gradient {
    background: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.05rem;
    max-width: 660px;
    color: var(--text-secondary);
    font-weight: 500;
}

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

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

.float-card {
    position: absolute;
    width: min(18rem, 16vw);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.08);
    color: var(--text-primary);
    backdrop-filter: blur(20px);
}

.float-card i {
    color: var(--accent-violet);
    width: 28px;
    height: 28px;
}

.card-1 {
    top: 18%;
    right: 8%;
}

.card-2 {
    top: 48%;
    right: 18%;
}

.card-3 {
    bottom: 14%;
    left: 14%;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    color: var(--text-secondary);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.mouse {
    width: 28px;
    height: 44px;
    border: 1.5px solid rgba(15, 23, 42, 0.18);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.38);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { top: 8px; opacity: 1; }
    100% { top: 24px; opacity: 0; }
}

.clients-section {
    padding: 4rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.clients-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 30%, rgba(124, 58, 237, 0.06), transparent 20%),
                radial-gradient(circle at 95% 70%, rgba(6, 182, 212, 0.06), transparent 18%);
    pointer-events: none;
}

.marquee-container {
    width: min(1100px, calc(100% - 3rem));
    margin: 0 auto;
    overflow: hidden;
}

.marquee {
    display: inline-flex;
    gap: 1.6rem;
    animation: marquee 28s linear infinite;
    white-space: nowrap;
}

.marquee span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.06rem;
    color: var(--text-secondary);
    letter-spacing: 0.08em;
}

.marquee .dot {
    color: rgba(15, 23, 42, 0.18);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.services {
    padding: 8rem 0 6rem;
    background: #f7f8fb;
}

.section-header {
    text-align: center;
    padding: 0 1.5rem;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    line-height: 1.05;
    margin-bottom: 0.9rem;
}

.section-desc {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.bento-grid {
    width: min(1120px, calc(100% - 3rem));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.bento-item {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    min-height: 360px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.bento-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(124, 58, 237, 0.18);
}

.bento-large {
    grid-column: span 2;
    min-height: 520px;
}

.bento-wide {
    grid-column: span 2;
}

.bento-glow-hover {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(124, 58, 237, 0.08), transparent 35%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.bento-item:hover .bento-glow-hover {
    opacity: 1;
}

.icon-box {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.15);
    color: var(--accent-blue);
}

.icon-box i {
    width: 26px;
    height: 26px;
}

.bento-item h3 {
    font-size: 1.75rem;
    color: var(--text-primary);
    line-height: 1.1;
}

.bento-item p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    flex-grow: 1;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.9rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.98rem;
}

.feature-list i {
    width: 18px;
    height: 18px;
    color: var(--accent-violet);
}

.bento-with-image {
    display: flex;
    gap: 2rem;
    align-items: stretch;
}

.bento-with-image-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bento-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bento-image-wrapper {
    position: relative;
    flex: 1;
    min-height: 280px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #f7f8fb;
}

.bento-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bento-item:hover .bento-image {
    transform: scale(1.03);
}

.contact-section {
    padding: 6rem 0 3rem;
    background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.1), transparent 20%), #f4f7ff;
}

.contact-top {
    width: min(1120px, calc(100% - 3rem));
    margin: 0 auto 2.5rem;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
    align-items: start;
}

.contact-panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-panel h2 {
    font-size: clamp(2.4rem, 4vw, 3rem);
    line-height: 1.05;
    max-width: 620px;
}

.contact-panel p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 620px;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.process-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.process-card {
    padding: 1.75rem;
    border-radius: 24px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(247, 248, 251, 0.95);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.process-step {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.12);
    color: var(--accent-violet);
    font-weight: 800;
}

.process-card h3 {
    margin: 0;
    font-size: 1.15rem;
    color: var(--text-primary);
}

.process-card p {
    color: var(--text-secondary);
    line-height: 1.75;
    margin: 0;
}

.payment-section {
    padding: 2rem 0 4rem;
}

.payment-container {
    width: min(1100px, calc(100% - 3rem));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
}

.payment-left h2 {
    font-size: clamp(2.3rem, 4vw, 3rem);
    line-height: 1.05;
    margin-bottom: 1rem;
}

.payment-left p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.social-links {
    display: grid;
    gap: 1rem;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.4rem;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: var(--text-primary);
    background: #ffffff;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.social-btn:hover {
    transform: translateX(4px);
    border-color: rgba(124, 58, 237, 0.18);
}

.social-btn.whatsapp {
    background: rgba(37, 99, 235, 0.08);
}

.social-btn.instagram {
    background: rgba(236, 72, 153, 0.08);
}

.social-btn.facebook {
    background: rgba(37, 99, 235, 0.08);
}

.terminal-card {
    background: #ffffff;
    border-radius: 28px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.terminal-header {
    display: flex;
    align-items: center;
    padding: 1.2rem 1.5rem;
    gap: 1rem;
    background: #f7f8fb;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.dots {
    display: flex;
    gap: 0.65rem;
}

.dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #22c55e; }

.terminal-title {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-left: auto;
    font-family: var(--font-heading);
}

.terminal-body {
    padding: 2rem;
}

.terminal-instruction {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.8rem;
    line-height: 1.8;
}

.data-group {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}

.data-group:last-child {
    border-bottom: none;
}

.data-label {
    color: var(--text-secondary);
    font-size: 0.93rem;
}

.data-value {
    font-family: 'Inter', sans-serif;
    font-size: 0.98rem;
    color: var(--text-primary);
    text-align: right;
}

.data-value.highlight {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1rem;
}

.alias-group {
    background: #f7f8fb;
    padding: 1rem;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    margin-top: 1rem;
}

.alias-info {
    display: grid;
    gap: 0.45rem;
}

.copy-btn {
    background: #ffffff;
    color: var(--text-primary);
    border: 1px solid rgba(15, 23, 42, 0.12);
    padding: 0.85rem 1rem;
    border-radius: 14px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.copy-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(124, 58, 237, 0.2);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.copy-btn i {
    width: 18px;
    height: 18px;
}

footer {
    padding: 4rem 2rem 3rem;
    background: #ffffff;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.footer-grid {
    width: min(1120px, calc(100% - 3rem));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr repeat(2, 1fr) 1fr;
    gap: 2rem;
    align-items: start;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.footer-brand {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-brand-mark {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #7c3aed, #2563eb);
    color: #ffffff;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 22px 48px rgba(124, 58, 237, 0.18);
}

.footer-brand-name {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-primary);
}

.footer-brand-tag {
    display: block;
    font-size: 0.82rem;
    color: var(--text-secondary);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-column,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.footer-column h4,
.footer-contact h4 {
    margin: 0;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-secondary);
}

.footer-column a,
.footer-contact a,
.footer-contact p {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-column a:hover,
.footer-contact a:hover {
    color: var(--text-primary);
}

.footer-note {
    width: min(1120px, calc(100% - 3rem));
    margin: 0 auto;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-note p {
    color: rgba(16, 16, 20, 0.55);
    margin: 0;
    font-size: 0.9rem;
}

.toast {
    position: fixed;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    color: var(--text-primary);
    padding: 1rem 1.8rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 700;
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.12);
    transition: bottom 0.4s cubic-bezier(0.18, 0.9, 0.32, 1.2);
    z-index: 9999;
}

.toast.show {
    bottom: 40px;
}

@media (max-width: 1110px) {
    .bento-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .bento-large,
    .bento-wide {
        grid-column: span 2;
    }
    .payment-container {
        grid-template-columns: 1fr;
    }
    .contact-top {
        grid-template-columns: 1fr;
    }
    .process-cards {
        grid-template-columns: 1fr 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 860px) {
    .nav-links {
        display: none;
    }

    .nav-container {
        justify-content: space-between;
    }
    .contact-top {
        gap: 1.5rem;
    }
    .process-cards {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-column,
    .footer-contact,
    .footer-brand {
        align-items: flex-start;
    }

    .hero {
        padding-top: calc(var(--nav-height) + 2rem);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-title {
        font-size: clamp(2.8rem, 12vw, 4rem);
    }

    .hero-description,
    .hero-stat span {
        text-align: left;
    }

    .hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-visual {
        align-items: center;
    }

    .hero-display-card {
        min-height: 320px;
    }

    .hero-badges {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .bento-with-image,
    .bento-with-image-col {
        flex-direction: column;
    }

    .bento-image-wrapper {
        min-height: 240px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .payment-container {
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .nav-glass {
        padding: 0 1rem;
    }
    .nav-container {
        width: 100%;
    }
    .hero {
        padding: calc(var(--nav-height) + 1.5rem) 1rem 2.5rem;
        min-height: auto;
    }
    .hero-content {
        gap: 1.5rem;
    }
    .hero-title {
        font-size: clamp(2.2rem, 11vw, 3rem);
        line-height: 1.05;
    }
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
        text-align: left;
    }
    .hero-display-card {
        min-height: 250px;
    }
    .hero-stat {
        padding: 0.8rem 1rem;
    }
    .hero-stat strong {
        font-size: 1.2rem;
    }
    .hero-stat span {
        text-align: left;
        font-size: 0.85rem;
    }
    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    .hero-badges {
        grid-template-columns: 1fr;
    }
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.5rem;
    }
    .social-btn {
        width: 100%;
        padding: 1rem;
    }
    .payment-container {
        gap: 1.5rem;
    }
    .section-title {
        font-size: clamp(2rem, 9vw, 2.6rem);
    }
    
    /* Novel Mobile Card Styles */
    .product-card {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-areas: 
            "icon title"
            "icon desc";
        align-items: center;
        gap: 0.5rem 1.25rem;
        padding: 1.25rem;
        background: rgba(255, 255, 255, 0.98);
        border-radius: 20px;
    }
    .product-card i {
        grid-area: icon;
        width: 46px;
        height: 46px;
        background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(6,182,212,0.1));
        padding: 10px;
        border-radius: 14px;
        color: var(--accent-violet);
    }
    .product-card h3 {
        grid-area: title;
        font-size: 1.15rem;
        align-self: end;
        margin: 0;
    }
    .product-card p {
        grid-area: desc;
        font-size: 0.88rem;
        align-self: start;
        margin: 0;
    }

    /* Process cards */
    .process-card {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-areas: 
            "step title"
            "step desc";
        gap: 0.3rem 1.1rem;
        padding: 1.25rem;
    }
    .process-step {
        grid-area: step;
        align-self: center;
        width: 46px;
        height: 46px;
        font-size: 1.2rem;
    }
    .process-card h3 {
        grid-area: title;
        font-size: 1.05rem;
        align-self: end;
        margin: 0;
    }
    .process-card p {
        grid-area: desc;
        font-size: 0.88rem;
        align-self: start;
        margin: 0;
    }

    /* Bento Grid Mobile */
    .bento-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .bento-large,
    .bento-wide {
        grid-column: auto;
    }
    .bento-item {
        padding: 1.5rem;
        min-height: auto;
    }
    .bento-content {
        gap: 1rem;
    }
    .bento-item h3 {
        font-size: 1.5rem;
    }
    .bento-item p {
        font-size: 0.95rem;
    }
    .icon-box {
        width: 50px;
        height: 50px;
        border-radius: 14px;
    }
    .icon-box i {
        width: 24px;
        height: 24px;
    }
    .bento-image-wrapper {
        min-height: 220px;
        border-radius: 18px;
    }

    .products-section, .services {
        padding: 3rem 0;
    }
    .contact-section {
        padding: 3.5rem 0 2rem;
    }
    .floating-whatsapp {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 55px;
        height: 55px;
    }
    .floating-whatsapp i {
        width: 28px;
        height: 28px;
    }
    footer {
        padding: 3rem 1.5rem 2rem;
    }
}

/* Loader */
.laser-loader {
    position: fixed;
    inset: 0;
    background: #0f172a;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.laser-beam-container {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.laser-beam {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #7c3aed, #06b6d4, #ec4899);
    box-shadow: 0 0 15px #06b6d4, 0 0 30px #7c3aed;
    border-radius: 4px;
}

.loader-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.loader-text .text-line {
    opacity: 0;
}

.loader-text .highlight {
    background: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-size: 2.8rem;
    font-weight: 800;
    margin-top: 0.5rem;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: floatWA 4s ease-in-out infinite;
}

.floating-whatsapp i {
    width: 34px;
    height: 34px;
}

.floating-whatsapp:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
    animation-play-state: paused;
}

@keyframes floatWA {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
