/* Base & Reset */
:root {
    --bg-color: #050505;
    --bg-alt: #0a0a0f;
    --text-main: #e0e0e0;
    --text-muted: #a0a0a0;
    --primary: #00f2ff;
    --secondary: #7000ff;
    --accent: #ff0055;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.05);
    --font-main: 'Outfit', sans-serif;
    --container-width: 1200px;
    --header-height: 80px;
    --transition: all 0.3s ease;
}

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

body,
html {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section {
    padding: 100px 0;
}

.bg-darker {
    background-color: var(--bg-alt);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.dot {
    color: var(--primary);
}

/* Background Glow */
.background-glow {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(112, 0, 255, 0.15) 0%, rgba(5, 5, 5, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.8);
    border-bottom: 1px solid var(--glass-border);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.6rem;
    cursor: pointer;
    z-index: 1001;
    /* Ensure it stays above nav-links when open */
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: #fff !important;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(112, 0, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 242, 255, 0.4);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

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

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--header-height);
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    max-width: 800px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-visual {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    height: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    opacity: 0.8;
}

.code-block-mockup {
    background: rgba(20, 20, 25, 0.9);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 20px;
    width: 400px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: rotateY(-10deg) rotateX(5deg);
    transition: var(--transition);
}

.code-block-mockup:hover {
    transform: rotateY(0) rotateX(0);
}

.window-controls span {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ff5f56;
    margin-right: 6px;
}

.window-controls span:nth-child(2) {
    background-color: #ffbd2e;
}

.window-controls span:nth-child(3) {
    background-color: #27c93f;
}

.code-lines {
    margin-top: 20px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #a0a0a0;
}

.line {
    margin-bottom: 8px;
}

.var {
    color: var(--secondary);
}

.str {
    color: #a5ff90;
}

.func {
    color: var(--primary);
}

/* Grid & Cards */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 40px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(0, 242, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Products Section */
.products-showcase {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.product-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.product-card.reverse {
    direction: rtl;
}

.product-card.reverse .product-info {
    direction: ltr;
}

.product-image {
    height: 350px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.placeholder-gradient {
    background: linear-gradient(45deg, #1a1a2e, #16213e);
}

.placeholder-gradient::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(transparent, rgba(0, 242, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 6s infinite;
}

.placeholder-gradient-2 {
    background: linear-gradient(45deg, #1f1b2e, #2d1b3e);
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.product-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    margin-top: 20px;
    font-weight: 600;
}

/* About Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 24px;
    overflow: hidden;
}

.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
}

.contact-info {
    padding: 60px;
    background: rgba(112, 0, 255, 0.05);
}

.contact-form {
    padding: 60px;
}

.contact-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-muted);
}

.contact-list i {
    color: var(--primary);
    font-size: 1.2rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-main);
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.4);
}

.full-width {
    width: 100%;
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--glass-border);
    background: var(--bg-alt);
}

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

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 10px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border-radius: 50%;
    color: var(--text-main);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

.fade-in {
    opacity: 0;
    transition: opacity 1s ease;
}

.fade-in.active {
    opacity: 1;
}

.slide-right {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.slide-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* ========= Hero Enhancements ========= */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 242, 255, 0.08);
    border: 1px solid rgba(0, 242, 255, 0.2);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.dot-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    display: inline-block;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.8);
    }
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat .stat-val {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.hero-stat span:last-child {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

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

.cm {
    color: #5c8a5c;
    font-style: italic;
}

/* ========= Service Cards ========= */
.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
    list-style: none;
    padding: 0;
}

.service-tags li {
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(0, 242, 255, 0.05);
    border: 1px solid rgba(0, 242, 255, 0.15);
    color: var(--primary);
}

/* ========= Product Feature Layout ========= */
.product-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.product-feature:last-child {
    margin-bottom: 0;
}

.product-feature.reverse {
    direction: rtl;
}

.product-feature.reverse .product-feature-info {
    direction: ltr;
}

.product-feature-visual {
    border-radius: 24px;
    height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.spendup-gradient {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0c2340 100%);
}

.agendado-gradient {
    background: linear-gradient(135deg, #0a0f1e 0%, #111827 50%, #0d1f3c 100%);
}

.restopro-gradient {
    background: linear-gradient(135deg, #1a0a00 0%, #2d1200 50%, #1f0a00 100%);
}

.product-app-mockup {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 2;
}

.app-icon-large {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(0, 242, 255, 0.1);
    border: 1px solid rgba(0, 242, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.15);
}

.agendado-gradient .app-icon-large {
    background: rgba(112, 0, 255, 0.15);
    border-color: rgba(112, 0, 255, 0.3);
    color: #a855f7;
    box-shadow: 0 0 30px rgba(112, 0, 255, 0.2);
}

.restopro-gradient .app-icon-large {
    background: rgba(255, 100, 0, 0.15);
    border-color: rgba(255, 100, 0, 0.3);
    color: #f97316;
    box-shadow: 0 0 30px rgba(255, 100, 0, 0.2);
}

.app-screen-lines {
    width: 200px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.app-line {
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
}

.app-line.wide {
    width: 100%;
}

.app-line.medium {
    width: 70%;
}

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

.app-line.x-short {
    width: 35%;
}

.amount-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.amount-label {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.amount-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

/* Mini calendar */
.mini-calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.cal-day {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.06);
}

.cal-day.taken {
    background: rgba(112, 0, 255, 0.4);
}

.cal-day.available {
    background: rgba(0, 242, 255, 0.3);
}

/* Menu mockup */
.menu-mockup-lines {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.menu-item-line {
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-item-img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 100, 0, 0.25);
    flex-shrink: 0;
}

.menu-item-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.product-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 242, 255, 0.1);
    border: 1px solid rgba(0, 242, 255, 0.25);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.8rem;
    color: var(--primary);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

.agendado-badge {
    background: rgba(112, 0, 255, 0.1);
    border-color: rgba(112, 0, 255, 0.25);
    color: #a855f7;
}

.restopro-badge {
    background: rgba(255, 100, 0, 0.1);
    border-color: rgba(255, 100, 0, 0.25);
    color: #f97316;
}

/* Product info */
.product-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 12px;
}

.product-name {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1;
}

.product-tld {
    color: var(--text-muted);
    font-size: 1.5rem;
}

.product-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.product-features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.product-features-list i {
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.product-target-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.product-target-tags span {
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(112, 0, 255, 0.08);
    border: 1px solid rgba(112, 0, 255, 0.2);
    color: #a855f7;
}

.product-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ========= About Visual / Tech Stack ========= */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-desc {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.75;
}

.about-values {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0 40px;
}

.value-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.value-pill i {
    color: var(--primary);
    font-size: 0.9rem;
}

.tech-stack-card {
    padding: 36px;
    border-radius: 20px;
}

.tech-stack-card h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.tech-item:hover {
    border-color: rgba(0, 242, 255, 0.2);
    color: var(--text-main);
}

.tech-item i {
    color: var(--primary);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* ========= Contact Products Links ========= */
.contact-products {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cp-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.cp-link {
    display: inline-block;
    margin-right: 16px;
    margin-top: 8px;
    font-size: 0.9rem;
    color: var(--primary);
    border-bottom: 1px solid rgba(0, 242, 255, 0.3);
    padding-bottom: 2px;
    transition: var(--transition);
}

.cp-link:hover {
    border-color: var(--primary);
}

.contact-list li {
    margin-bottom: 16px;
}

.form-group select {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-muted);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
    appearance: none;
    cursor: pointer;
}

.form-group select:focus {
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.4);
}

.form-group select option {
    background: #0a0a0f;
    color: var(--text-main);
}

/* ========= Footer Expanded ========= */
.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 30px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 10px;
}

.footer-copy {
    margin-top: 20px !important;
    font-size: 0.8rem !important;
}

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

.footer-col h5 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: flex-end;
}


/* ========= CTA Section ========= */
.cta-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: var(--bg-alt);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.cta-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.cta-glow-left {
    top: -150px;
    left: -150px;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.08) 0%, transparent 70%);
}

.cta-glow-right {
    bottom: -150px;
    right: -150px;
    background: radial-gradient(circle, rgba(112, 0, 255, 0.12) 0%, transparent 70%);
}

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

/* Process Steps */
.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-bottom: 100px;
}

.process-step {
    flex: 1;
    max-width: 220px;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.step-number {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary);
    opacity: 0.6;
    margin-bottom: 16px;
}

.step-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin: 0 auto 20px;
    transition: var(--transition);
    position: relative;
}

.step-icon::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 21px;
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.3), rgba(112, 0, 255, 0.3));
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.process-step:hover .step-icon {
    background: rgba(0, 242, 255, 0.08);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.15);
}

.process-step:hover .step-icon::before {
    opacity: 1;
}

.process-step h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-main);
}

.process-step p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.step-arrow {
    display: flex;
    align-items: center;
    padding-top: 35px;
    color: var(--glass-border);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Main CTA Hero */
.cta-main {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 120, 0.08);
    border: 1px solid rgba(0, 255, 120, 0.25);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.85rem;
    color: #00ff78;
    margin-bottom: 30px;
    animation: badge-pulse 3s infinite;
}

@keyframes badge-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 120, 0.2);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(0, 255, 120, 0);
    }
}

.cta-badge i {
    font-size: 0.8rem;
}

.cta-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text-main);
}

.cta-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 44px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.btn-cta-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 44px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: #fff !important;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 30px rgba(112, 0, 255, 0.4);
    transition: var(--transition);
    text-decoration: none;
}

.btn-cta-main:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 40px rgba(0, 242, 255, 0.5);
}

.btn-cta-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: rgba(37, 211, 102, 0.1);
    color: #25d366 !important;
    border: 1px solid rgba(37, 211, 102, 0.35);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    text-decoration: none;
}

.btn-cta-whatsapp:hover {
    background: rgba(37, 211, 102, 0.18);
    border-color: #25d366;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.2);
}

.btn-cta-whatsapp i {
    font-size: 1.2rem;
}

.cta-trust {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-trust span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.cta-trust i {
    color: #00ff78;
    font-size: 0.8rem;
}



/* ========= Language Toggle ========= */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 5px 12px;
    cursor: pointer;
    font-family: var(--font-main);
    transition: var(--transition);
}

.lang-toggle:hover {
    border-color: rgba(0, 242, 255, 0.3);
    background: rgba(0, 242, 255, 0.05);
}

.lang-opt {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-muted);
    padding: 2px 4px;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
}

.lang-opt.active {
    color: var(--primary);
}

.lang-opt:not(.active):hover {
    color: var(--text-main);
}

.lang-sep {
    color: var(--glass-border);
    font-size: 0.7rem;
    user-select: none;
}

/* ========= RESPONSIVE — TABLET (max 992px) ========= */
@media (max-width: 992px) {

    /* Hero */
    .hero-section {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
        padding-top: calc(var(--header-height) + 40px);
        padding-bottom: 60px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-visual {
        display: none;
    }

    /* Products */
    .product-feature {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-feature.reverse {
        direction: ltr;
    }

    /* About */
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    /* Contact */
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    /* CTA */
    .process-steps {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
    }

    .step-arrow {
        display: none;
    }

    .process-step {
        max-width: 180px;
    }

    .cta-title {
        font-size: 2.4rem;
    }

    /* Footer */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ========= RESPONSIVE — MOBILE (max 768px) ========= */
@media (max-width: 768px) {

    /* Global */
    .section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    /* ---- Navbar ---- */
    .mobile-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: rgba(5, 5, 10, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 28px;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .lang-toggle {
        padding: 8px 18px;
    }

    .lang-opt {
        font-size: 0.9rem;
    }

    /* ---- Hero ---- */
    .hero-section {
        height: auto;
        min-height: auto;
        /* Allow section to collapse without stats */
        padding-top: calc(var(--header-height) + 20px);
        padding-bottom: 20px;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.15;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 14px;
    }

    .hero-buttons a {
        text-align: center;
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-top: 40px;
        width: 100%;
    }

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

    .hero-stat-sep {
        display: none;
    }

    .hero-badge {
        font-size: 0.78rem;
    }

    /* Globals to prevent scroll overflow */
    body,
    html {
        overflow-x: hidden;
        max-width: 100vw;
    }

    .background-glow,
    .cta-glow {
        display: none !important;
    }

    /* ---- Services ---- */
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card {
        padding: 28px 22px;
    }

    /* ---- Products ---- */
    .product-feature {
        display: flex;
        flex-direction: column;
        gap: 30px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .product-feature.reverse {
        flex-direction: column;
    }

    .product-feature-visual {
        height: auto;
        min-height: 220px;
        width: 100%;
        overflow: hidden;
        border-radius: 24px;
        padding: 40px 20px 0;
        /* Let the mockup sit at the bottom */
        display: flex;
        align-items: flex-end;
        justify-content: center;
    }

    .product-feature-info {
        width: 100%;
        padding: 0 5px;
        text-align: center;
        /* Center product text on mobile for better aesthetics */
    }

    .product-name {
        font-size: 2rem;
        justify-content: center;
    }

    .product-desc {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    .product-features-list {
        align-items: center;
        /* Center list on mobile */
    }

    .product-target-tags {
        justify-content: center;
    }

    .product-actions {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-top: 10px;
    }

    .product-actions a {
        text-align: center;
        justify-content: center;
        width: 100%;
    }

    .product-app-mockup {
        width: 100%;
        max-width: 240px;
        margin: 0 auto -20px;
        /* Slight negative margin so it sits on the visual bounding box */
    }

    /* ---- About ---- */
    .about-container {
        display: flex;
        flex-direction: column;
        gap: 30px;
        /* Reduced gap */
        width: 100%;
        text-align: center;
        /* Center text for better mobile symmetry */
    }

    .about-desc {
        text-align: center;
        font-size: 1.05rem;
        /* Slightly larger for readability */
    }

    .stats-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        width: 100%;
        padding: 20px 0;
        border-top: 1px solid var(--glass-border);
        border-bottom: 1px solid var(--glass-border);
    }

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

    .stat-number {
        font-size: 2.2rem;
        color: var(--primary);
        /* Highlight stats more */
    }

    .about-values {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-top: 10px;
    }

    .value-pill {
        width: 100%;
        justify-content: center;
        padding: 12px;
        /* Bigger tap target */
        background: rgba(112, 0, 255, 0.05);
        /* Subtle brand tint */
    }

    .tech-stack-card {
        padding: 30px 20px;
        width: 100%;
        text-align: center;
        background: rgba(255, 255, 255, 0.02);
    }

    .tech-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-top: 20px;
    }

    .tech-item {
        padding: 18px 12px;
        font-size: 1.05rem;
        justify-content: center;
        flex-direction: column;
        gap: 10px;
        border-radius: 16px;
    }

    .tech-item i {
        font-size: 1.8rem;
        margin-bottom: 2px;
    }

    /* ---- CTA ---- */
    .cta-section {
        padding: 60px 0;
        width: 100%;
    }

    .process-steps {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        /* Tighter gap */
        margin-bottom: 50px;
        width: 100%;
        position: relative;
    }

    /* Add a subtle connecting vertical line behind the steps on mobile */
    .process-steps::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 1px;
        background: linear-gradient(to bottom, transparent, var(--glass-border) 10%, var(--glass-border) 90%, transparent);
        z-index: 0;
    }

    .process-step {
        width: 100%;
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        background: var(--bg-color);
        /* Added background to cover the line */
        border-radius: 16px;
        border: 1px solid var(--glass-border);
        position: relative;
        z-index: 1;
    }

    .step-number {
        margin-bottom: 10px;
    }

    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
        margin: 0 auto 12px;
        border-radius: 12px;
    }

    .process-step h4 {
        font-size: 1.1rem;
        margin-bottom: 6px;
        color: var(--primary);
    }

    .process-step p {
        display: block;
        font-size: 0.9rem;
        max-width: 100%;
        /* Take full width of card */
        color: var(--text-muted);
    }

    .cta-title {
        font-size: 1.75rem;
        line-height: 1.25;
    }

    .cta-desc {
        font-size: 1rem;
    }

    .cta-buttons {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 14px;
    }

    .btn-cta-main,
    .btn-cta-whatsapp {
        width: 100%;
        justify-content: center;
        padding: 16px 28px;
        box-sizing: border-box;
    }

    .cta-trust {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 12px;
        padding: 0 20px;
    }

    /* ---- Contact ---- */
    .contact-info {
        padding: 36px 28px;
    }

    .contact-form {
        padding: 36px 28px;
    }

    .contact-wrapper {
        border-radius: 18px;
    }

    /* ---- Footer ---- */
    .footer-main {
        display: flex;
        flex-direction: column;
        gap: 50px;
        width: 100%;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 40px;
        text-align: center;
        width: 100%;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .footer-col h5 {
        font-size: 1.15rem;
        margin-bottom: 16px;
        letter-spacing: 2px;
    }

    .footer-col ul {
        gap: 14px;
    }

    .footer-col ul li a {
        font-size: 1.1rem;
    }

    .footer-brand p {
        font-size: 1.05rem;
    }

    .footer-copy {
        font-size: 0.95rem !important;
        margin-top: 16px !important;
    }

    .footer-bottom {
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 40px;
    }

    /* ---- Hidden on Mobile ---- */
    .hero-stats,
    .amount-display {
        display: none !important;
    }
}

/* ========= RESPONSIVE — SMALL PHONES (max 480px) ========= */
@media (max-width: 480px) {

    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 1.85rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 11px 22px;
        font-size: 0.9rem;
    }

    .product-feature-visual {
        height: 230px;
    }

    .product-name {
        font-size: 1.7rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .tech-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .contact-info {
        padding: 28px 20px;
    }

    .contact-form {
        padding: 28px 20px;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .cta-title {
        font-size: 1.55rem;
    }

    .process-step {
        max-width: 100%;
    }
}