/* ==========================================================================
   DIGITAL MARKETING V2 - NEON GLASSMORPHISM THEME
   ========================================================================== */
:root {
    --bg-dark: #030712;
    --bg-panel: rgba(17, 24, 39, 0.6);
    --cyan: #06b6d4;
    --cyan-glow: rgba(6, 182, 212, 0.5);
    --magenta: #ec4899;
    --magenta-glow: rgba(236, 72, 153, 0.5);
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --border-light: rgba(255, 255, 255, 0.1);
    --font-heading: 'Montserrat', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --glass-blur: blur(16px);
    --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.7;
}

/* Custom Selection */
::selection {
    background: var(--cyan);
    color: #fff;
}

/* Custom Cursor (Hidden on small screens) */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--cyan);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--magenta);
    transition: width 0.2s, height 0.2s, border-color 0.2s;
}

@media (max-width: 1024px) {

    .cursor-dot,
    .cursor-outline {
        display: none;
    }
}

/* ==========================================================================
   GLOBAL HEADER (STRICTLY IDENTICAL)
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(3, 7, 18, 0.7);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: var(--transition);
}

.header-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container img {
    height: 50px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-menu li a {
    color: var(--text-main);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 5px;
    transition: var(--transition);
}

.nav-menu li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--cyan);
    transition: var(--transition);
    box-shadow: 0 0 10px var(--cyan-glow);
}

.nav-menu li a:hover {
    color: var(--cyan);
}

.nav-menu li a:hover::before {
    width: 100%;
}

.nav-cta {
    background: transparent !important;
    border: 2px solid var(--magenta);
    padding: 0.7rem 1.8rem !important;
    border-radius: 4px;
    box-shadow: inset 0 0 0 0 var(--magenta);
    transition: var(--transition) !important;
}

.nav-cta::before {
    display: none;
}

.nav-cta:hover {
    background: var(--magenta) !important;
    box-shadow: 0 0 20px var(--magenta-glow);
    color: #fff !important;
}

.mobile-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

/* ==========================================================================
   GLOBAL FOOTER (STRICTLY IDENTICAL)
   ========================================================================== */
.site-footer {
    background: #02040a;
    border-top: 1px solid var(--border-light);
    padding: 6rem 2rem 2rem;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), var(--magenta), transparent);
}

.footer-wrapper {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
}

.footer-logo img {
    height: 55px;
    margin-bottom: 1.5rem;
}

.footer-about {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.footer-col h4 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--cyan);
    transform: translateX(5px);
}

.contact-list p {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.contact-list svg {
    fill: var(--magenta);
    flex-shrink: 0;
}

.footer-bottom {
    max-width: 1500px;
    margin: 4rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.legal-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 1.5rem;
    transition: var(--transition);
}

.legal-links a:hover {
    color: var(--magenta);
}

/* ==========================================================================
   INDEX - 10+ SECTIONS
   ========================================================================== */
.section-pad {
    padding: 8rem 2rem;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.text-center {
    text-align: center;
}

.sec-title {
    margin-bottom: 4rem;
    text-align: center;
}

.sec-title h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

.sec-title h2 span {
    color: transparent;
    -webkit-text-stroke: 1px var(--cyan);
    background: linear-gradient(90deg, var(--cyan), var(--magenta));
    -webkit-background-clip: text;
}

.sec-title p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 1rem auto 0;
    font-size: 1.1rem;
}

/* 2. Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 6rem;
    overflow: hidden;
    position: relative;
}

.bg-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: floatOrb 10s infinite alternate;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--cyan);
    top: -100px;
    right: -100px;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--magenta);
    bottom: -50px;
    left: -50px;
    animation-delay: -5s;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 5vw;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.typewriter-text {
    color: var(--cyan);
    text-shadow: 0 0 10px var(--cyan-glow);
    border-right: 3px solid var(--magenta);
    animation: blink 0.75s step-end infinite;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 500px;
}

.btn-glitch {
    position: relative;
    display: inline-block;
    padding: 1.2rem 3rem;
    background: transparent;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--cyan);
    letter-spacing: 2px;
    box-shadow: inset 0 0 20px rgba(6, 182, 212, 0.2), 0 0 20px rgba(6, 182, 212, 0.2);
    transition: var(--transition);
    overflow: hidden;
}

.btn-glitch::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-glitch:hover {
    background: var(--cyan);
    color: var(--bg-dark);
    box-shadow: 0 0 30px var(--cyan-glow);
}

.btn-glitch:hover::before {
    left: 100%;
}

.hero-visual {
    position: relative;
    height: 500px;
}

.glass-card {
    position: absolute;
    background: var(--bg-panel);
    border: 1px solid var(--border-light);
    backdrop-filter: var(--glass-blur);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.gc-1 {
    top: 10%;
    right: 0;
    width: 350px;
    transform: rotate(5deg);
    animation: levitate 6s infinite ease-in-out;
}

.gc-2 {
    bottom: 10%;
    left: 0;
    width: 300px;
    transform: rotate(-5deg);
    z-index: -1;
    animation: levitate 8s infinite ease-in-out reverse;
}

.metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1rem;
}

.metric-row:last-child {
    border: none;
    margin: 0;
    padding: 0;
}

.metric-val {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--cyan);
    font-family: var(--font-heading);
}

.metric-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
}

/* 3. Social Proof Ticker */
.ticker-wrap {
    background: rgba(255, 255, 255, 0.02);
    border-y: 1px solid var(--border-light);
    padding: 2rem 0;
    overflow: hidden;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: scrollTicker 30s linear infinite;
}

.ticker-item {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1);
    margin: 0 3rem;
    text-transform: uppercase;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
}

/* 4. About / Philosophy */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2.5rem;
    color: var(--magenta);
    margin-bottom: 1.5rem;
}

.glass-box {
    background: var(--bg-panel);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.glass-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--cyan), var(--magenta));
}

/* 5. Services (3D Flip Cards) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    perspective: 1000px;
}

.flip-card {
    width: 100%;
    height: 350px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.flip-card:hover {
    transform: rotateY(180deg);
}

.flip-front,
.flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.flip-front {
    background: var(--bg-panel);
    border: 1px solid var(--border-light);
}

.flip-back {
    background: linear-gradient(135deg, var(--cyan-glow), var(--magenta-glow));
    transform: rotateY(180deg);
    border: 1px solid var(--magenta);
    text-align: center;
}

.srv-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    fill: var(--cyan);
}

.flip-front h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.flip-back p {
    color: #fff;
    font-weight: 500;
    font-size: 1.1rem;
}

/* 6. Interactive ROI Builder */
.roi-section {
    background: url('data:image/svg+xml;utf8,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
}

.roi-container {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    border-radius: 30px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.slider-group {
    margin-bottom: 2.5rem;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.slider-val {
    color: var(--cyan);
    font-weight: bold;
    font-family: var(--font-heading);
}

input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    background: transparent;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: var(--magenta);
    cursor: pointer;
    margin-top: -8px;
    box-shadow: 0 0 10px var(--magenta-glow);
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: var(--border-light);
    border-radius: 2px;
}

.roi-result {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid var(--border-light);
    padding-left: 5rem;
}

.big-number {
    font-size: 5rem;
    font-family: var(--font-heading);
    font-weight: 900;
    background: linear-gradient(180deg, #fff, var(--cyan));
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
    line-height: 1;
    margin-bottom: 1rem;
}

/* 7. Live Analytics Dashboard Mockup */
.mockup-wrapper {
    background: #000;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

.mockup-nav {
    background: #111;
    padding: 15px 20px;
    display: flex;
    gap: 10px;
    border-bottom: 1px solid #222;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #444;
}

.dot:nth-child(1) {
    background: #ff5f56;
}

.dot:nth-child(2) {
    background: #ffbd2e;
}

.dot:nth-child(3) {
    background: #27c93f;
}

.mockup-body {
    padding: 2rem;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
}

.mockup-sidebar ul {
    list-style: none;
}

.mockup-sidebar li {
    padding: 10px;
    margin-bottom: 5px;
    background: #111;
    border-radius: 6px;
    color: #888;
    font-size: 0.9rem;
}

.mockup-sidebar li.active {
    background: rgba(6, 182, 212, 0.1);
    color: var(--cyan);
    border-left: 3px solid var(--cyan);
}

.chart-area {
    height: 300px;
    display: flex;
    align-items: flex-end;
    gap: 2%;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
}

.chart-col {
    flex: 1;
    background: var(--cyan);
    border-radius: 4px 4px 0 0;
    position: relative;
    animation: barRise 2s ease-out forwards;
    opacity: 0;
}

.chart-col:nth-child(even) {
    background: var(--magenta);
}

.chart-col::after {
    content: attr(data-val);
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: #fff;
}

/* 8. Industries Hexagons */
.hex-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.hex-card {
    width: 220px;
    height: 250px;
    background: rgba(255, 255, 255, 0.03);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    transition: var(--transition);
    border: 2px solid transparent;
}

.hex-card:hover {
    background: rgba(236, 72, 153, 0.1);
    transform: scale(1.05);
}

.hex-card svg {
    width: 40px;
    height: 40px;
    fill: var(--magenta);
    margin-bottom: 1rem;
}

/* 9. Testimonials */
.testi-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testi-item {
    background: linear-gradient(180deg, var(--bg-panel), transparent);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
}

.testi-item::before {
    content: '”';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 6rem;
    font-family: serif;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #333;
}

/* 10. Global CTA */
.cta-banner {
    background: linear-gradient(45deg, var(--cyan-glow), transparent, var(--magenta-glow));
    border: 1px solid var(--magenta);
    border-radius: 30px;
    padding: 6rem 2rem;
    text-align: center;
    box-shadow: 0 0 50px rgba(236, 72, 153, 0.2);
}

.cta-banner h2 {
    font-size: 4rem;
    font-family: var(--font-heading);
    margin-bottom: 2rem;
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.page-header {
    padding: 12rem 2rem 6rem;
    text-align: center;
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--cyan);
}

.contact-wrap {
    max-width: 1300px;
    margin: 4rem auto 8rem;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    padding: 0 2rem;
}

.contact-details {
    background: var(--bg-panel);
    border: 1px solid var(--border-light);
    padding: 4rem;
    border-radius: 20px;
}

.contact-details h3 {
    font-size: 2rem;
    color: var(--magenta);
    margin-bottom: 2rem;
    font-family: var(--font-heading);
}

.detail-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.detail-item svg {
    width: 30px;
    height: 30px;
    fill: var(--cyan);
}

.contact-form {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-light);
    padding: 4rem;
    border-radius: 20px;
}

.input-wrap {
    position: relative;
    margin-bottom: 2.5rem;
}

.input-wrap input,
.input-wrap textarea,
.input-wrap select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--border-light);
    color: #fff;
    padding: 10px 0;
    font-size: 1.1rem;
    outline: none;
    font-family: var(--font-body);
    transition: var(--transition);
}

.input-wrap label {
    position: absolute;
    top: 10px;
    left: 0;
    color: var(--text-muted);
    transition: 0.3s;
    pointer-events: none;
}

.input-wrap input:focus,
.input-wrap textarea:focus {
    border-bottom-color: var(--cyan);
}

.input-wrap input:focus~label,
.input-wrap input:valid~label,
.input-wrap textarea:focus~label,
.input-wrap textarea:valid~label {
    top: -20px;
    font-size: 0.85rem;
    color: var(--cyan);
}

.input-wrap select {
    cursor: pointer;
    color: var(--text-muted);
}

.input-wrap select option {
    background: #000;
    color: #fff;
}

/* ==========================================================================
   LEGAL PAGES
   ========================================================================== */
.legal-box {
    max-width: 900px;
    margin: 4rem auto 8rem;
    padding: 4rem;
    background: var(--bg-panel);
    border: 1px solid var(--border-light);
    border-radius: 16px;
}

.legal-box h2 {
    color: var(--cyan);
    margin: 3rem 0 1rem;
    font-family: var(--font-heading);
}

.legal-box p,
.legal-box li {
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.legal-box ul {
    padding-left: 2rem;
}

/* ==========================================================================
   CHAT WIDGET
   ========================================================================== */
.neon-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.chat-toggle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 2px solid var(--cyan);
    color: var(--cyan);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 0 20px var(--cyan-glow);
    transition: var(--transition);
}

.chat-toggle:hover {
    background: var(--cyan);
    color: #fff;
    transform: scale(1.1);
}

.chat-panel {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 360px;
    background: var(--bg-panel);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--cyan);
    border-radius: 16px;
    overflow: hidden;
    transform: scale(0.9);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    transform-origin: bottom right;
}

.chat-panel.open {
    transform: scale(1);
    opacity: 1;
    pointer-events: all;
}

.chat-head {
    background: rgba(6, 182, 212, 0.2);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--cyan);
}

.chat-history {
    height: 320px;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.msg {
    max-width: 85%;
    padding: 1rem;
    border-radius: 12px;
    font-size: 0.95rem;
}

.msg.bot {
    background: rgba(255, 255, 255, 0.05);
    align-self: flex-start;
    border-top-left-radius: 2px;
}

.msg.user {
    background: var(--magenta);
    align-self: flex-end;
    border-top-right-radius: 2px;
    color: #fff;
}

.chat-foot {
    display: flex;
    border-top: 1px solid var(--border-light);
}

.chat-foot input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1.2rem;
    color: #fff;
    outline: none;
}

.chat-foot button {
    background: var(--cyan);
    border: none;
    padding: 0 1.5rem;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}

/* ==========================================================================
   ANIMATIONS & RESPONSIVE
   ========================================================================== */
@keyframes floatOrb {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 50px) scale(1.2);
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

@keyframes levitate {

    0%,
    100% {
        transform: translateY(0) rotate(5deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

@keyframes scrollTicker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes barRise {
    0% {
        height: 0;
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {

    .hero-grid,
    .about-grid,
    .roi-container,
    .mockup-body,
    .contact-wrap {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .testi-carousel {
        grid-template-columns: 1fr;
    }

    .mockup-sidebar {
        display: flex;
        overflow-x: auto;
        gap: 10px;
    }

    .mockup-sidebar li {
        flex-shrink: 0;
    }

    .roi-result {
        border-left: none;
        border-top: 1px solid var(--border-light);
        padding-left: 0;
        padding-top: 3rem;
    }

    .footer-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #000;
        flex-direction: column;
        padding: 2rem 0;
        border-bottom: 1px solid var(--cyan);
    }

    .nav-menu.mobile-active {
        display: flex;
    }

    .mobile-btn {
        display: block;
    }

    .footer-wrapper {
        grid-template-columns: 1fr;
    }

    .sec-title h2 {
        font-size: 2.5rem;
    }

    .hex-card {
        width: 100%;
        height: auto;
        clip-path: none;
        border-radius: 10px;
        border: 1px solid var(--border-light);
    }
}