/* VONKGAT - Style System */

:root {
    --navy: #142C59; --turquoise: #18CFFB; --purple: #7D3FF2; --pink: #EB3CD4;
    --yellow: #F7B52B; --orange: #F86E3E; --lavender: #BFC6E5; --white: #FFFFFF;
    --font-main: 'Poppins', sans-serif;    --section-padding: 100px 20px;
    --container-max: 1200px; --transition-smooth: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: var(--font-main); color: var(--white); background: var(--navy);
    line-height: 1.6; overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
button { font-family: var(--font-main); border: none; cursor: pointer; background: none; }
a { text-decoration: none; color: inherit; }

/* NAV */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(20, 44, 89, 0.8); backdrop-filter: blur(10px);
    transition: var(--transition-smooth); padding: 16px 0;
}
.nav.scrolled { background: rgba(20, 44, 89, 0.95); padding: 12px 0; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); }
.nav-container { max-width: var(--container-max); margin: 0 auto; padding: 0 32px; display: flex; justify-content: space-between; align-items: center; }
.nav-logo .logo-img { height: 32px; transition: var(--transition-smooth); }
.nav.scrolled .nav-logo .logo-img { height: 28px; }
.nav-menu { display: flex; list-style: none; gap: 32px; }
.nav-link { color: var(--white); font-weight: 500; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; position: relative; transition: var(--transition-smooth); }
.nav-link::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: var(--turquoise); transition: var(--transition-smooth); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover { color: var(--turquoise); }
.chat-toggle-btn { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--turquoise), var(--purple)); display: flex; align-items: center; justify-content: center; color: var(--white); transition: var(--transition-smooth); }
.chat-toggle-btn svg { width: 20px; height: 20px; }
.chat-toggle-btn:hover { transform: scale(1.1); box-shadow: 0 5px 20px rgba(24, 207, 251, 0.4); }
.mobile-menu-toggle { display: none; flex-direction: column; gap: 5px; width: 24px; }
.mobile-menu-toggle span { width: 100%; height: 2px; background: var(--white); transition: var(--transition-smooth); border-radius: 2px; }

/* HERO */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; background: linear-gradient(135deg, #18CFFB 0%, #3A9FF8 33%, #5B6FF5 66%, #7D3FF2 100%); transition: opacity 0.3s ease; }
.hero::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 80%; max-width: 1200px; height: 80%; background-image: url('assets/logo/logo.png'); background-size: contain; background-repeat: no-repeat; background-position: center; opacity: 0.35; z-index: 1; pointer-events: none; }
.hero-background { position: absolute; inset: 0; overflow: hidden; }
.geometric-shape { position: absolute; opacity: 0.35; animation: float 20s ease-in-out infinite; }
.shape-1 { width: 300px; height: 300px; background: var(--turquoise); border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; top: 10%; left: 10%; }
.shape-2 { width: 200px; height: 200px; background: var(--pink); border-radius: 50%; top: 60%; right: 15%; animation-delay: 2s; }
.shape-3 { width: 250px; height: 250px; background: var(--yellow); clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); bottom: 15%; left: 20%; animation-delay: 4s; }
.shape-4 { width: 180px; height: 180px; background: var(--purple); border-radius: 20% 80% 80% 20% / 80% 20% 20% 80%; top: 30%; right: 25%; animation-delay: 1s; }
@keyframes float { 0%, 100% { transform: translate(0, 0) rotate(0deg); } 25% { transform: translate(20px, -20px) rotate(5deg); } 50% { transform: translate(-20px, 20px) rotate(-5deg); } 75% { transform: translate(20px, 20px) rotate(3deg); } }
.hero-content { position: relative; z-index: 10; text-align: center; padding: 0 16px; transform: translateY(5cm); }
.hero-title-main { font-size: clamp(4.5rem, 15vw, 12rem); font-weight: 900; text-transform: uppercase; letter-spacing: 0.1em; color: #ffffff; text-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.4), 0 0 30px rgba(24, 207, 251, 0.3), 0 0 40px rgba(24, 207, 251, 0.2), 0 0 60px rgba(24, 207, 251, 0.15); display: inline-block; animation: titleGlow 3s ease-in-out infinite; transform: translateY(1.5cm); }
@keyframes titleGlow { 0%, 100% { text-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.4), 0 0 30px rgba(24, 207, 251, 0.3), 0 0 40px rgba(24, 207, 251, 0.2), 0 0 60px rgba(24, 207, 251, 0.15); } 50% { text-shadow: 0 0 15px rgba(255, 255, 255, 0.7), 0 0 30px rgba(255, 255, 255, 0.5), 0 0 45px rgba(24, 207, 251, 0.4), 0 0 60px rgba(24, 207, 251, 0.3), 0 0 90px rgba(24, 207, 251, 0.2); } }
.hero-subtitle { font-size: clamp(1.2rem, 3vw, 1.8rem); font-weight: 300; color: var(--lavender); margin: 30px 0 50px; letter-spacing: 0.05em; }
.cta-button { padding: 18px 40px; font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; border-radius: 50px; background: linear-gradient(135deg, var(--turquoise), var(--pink)); color: var(--white); display: inline-flex; align-items: center; gap: 8px; transition: var(--transition-smooth); position: relative; overflow: hidden; }
.cta-button::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--pink), var(--purple)); opacity: 0; transition: var(--transition-smooth); }
.cta-button:hover::before { opacity: 1; }
.cta-button:hover { transform: translateY(-2.4px); box-shadow: 0 8px 24px rgba(235, 60, 212, 0.4); }
.cta-button > * { position: relative; z-index: 1; }
.button-arrow { font-size: 1.2rem; transition: var(--transition-smooth); }
.cta-button:hover .button-arrow { transform: translateX(4px); }
.scroll-indicator { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--lavender); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 2px; animation: bounce 2s ease-in-out infinite; }
.scroll-line { width: 1.6px; height: 32px; background: linear-gradient(to bottom, var(--turquoise), transparent); }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ABOUT */
.about { padding: var(--section-padding); background: var(--navy); }
.about-container { max-width: var(--container-max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.section-title { font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.2; margin-bottom: 24px; }
.about-text { display: flex; flex-direction: column; gap: 16px; }
.about-text p { font-size: 0.88rem; font-weight: 300; color: var(--lavender); line-height: 1.6; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 50px; }
.stat-item { text-align: center; padding: 16px; background: rgba(255, 255, 255, 0.03); border-radius: 12px; border: 1px solid rgba(24, 207, 251, 0.2); transition: var(--transition-smooth); }
.stat-item:hover { background: rgba(24, 207, 251, 0.1); border-color: var(--turquoise); transform: translateY(-4px); }
.stat-number { font-size: 3rem; font-weight: 900; color: var(--turquoise); display: block; margin-bottom: 8px; }
.stat-label { font-size: 1rem; color: var(--lavender); text-transform: uppercase; letter-spacing: 1px; }
.about-visual { position: relative; height: 400px; }
.visual-shapes { position: relative; width: 100%; height: 100%; }
.floating-shape { position: absolute; width: 160px; animation: floatShape 8s ease-in-out infinite; animation-delay: var(--delay); }
.floating-shape:nth-child(1) { top: 0; left: 0; }
.floating-shape:nth-child(2) { top: 50%; right: 0; }
.floating-shape:nth-child(3) { bottom: 0; left: 50%; }
.floating-shape:nth-child(4) { top: 25%; left: 25%; }
@keyframes floatShape { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-16px) rotate(10deg); } }

/* SERVICES */
.services { padding: var(--section-padding); background: linear-gradient(180deg, var(--navy) 0%, rgba(125, 63, 242, 0.1) 100%); }
.services-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-subtitle { font-size: 0.96rem; color: var(--lavender); font-weight: 300; }
.services-grid { max-width: var(--container-max); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; padding: 0 16px; }
.service-card { background: rgba(255, 255, 255, 0.05); border: 2px solid rgba(255, 255, 255, 0.1); border-radius: 20px; padding: 40px; position: relative; overflow: hidden; transition: var(--transition-smooth); cursor: pointer; }
.service-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at center, var(--turquoise) 0%, transparent 70%); opacity: 0; transition: var(--transition-smooth); }
.service-card:hover::before { opacity: 0.1; }
.service-card:hover { transform: translateY(-8px); border-color: var(--turquoise); box-shadow: 0 16px 32px rgba(24, 207, 251, 0.2); }
.service-card[data-service="print"]:hover { border-color: var(--pink); }
.service-card[data-service="social"]:hover { border-color: var(--yellow); }
.service-card[data-service="advertising"]:hover { border-color: var(--purple); }
.service-icon { width: 64px; height: 64px; margin-bottom: 20px; color: var(--turquoise); transition: var(--transition-smooth); }
.service-card:hover .service-icon { transform: scale(1.1) rotate(5deg); }
.service-card[data-service="print"] .service-icon { color: var(--pink); }
.service-card[data-service="social"] .service-icon { color: var(--yellow); }
.service-card[data-service="advertising"] .service-icon { color: var(--purple); }
.service-title { font-size: 1.44rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.service-description { font-size: 0.8rem; color: var(--lavender); line-height: 1.7; margin-bottom: 16px; }
.service-features { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.service-features li { font-size: 0.76rem; color: var(--lavender); padding-left: 20px; position: relative; line-height: 1.6; }
.service-features li::before { content: '→'; position: absolute; left: 0; color: var(--turquoise); font-weight: 600; }
.service-features li strong { color: var(--white); font-weight: 700; }
.service-glow { position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--turquoise), var(--pink)); opacity: 0; transition: var(--transition-smooth); }
.service-card:hover .service-glow { opacity: 1; }
.service-card-center { grid-column: 2 / 3; }
@media (max-width: 768px) {
    .service-card-center { grid-column: 1; }
}
.services-statement { max-width: 900px; margin: 80px auto 0; padding: 0 20px; text-align: center; }
.services-statement p { font-size: 1.2rem; color: var(--lavender); font-weight: 300; line-height: 1.8; }

/* DESIGN TOOL */
.design-tool-section { padding: var(--section-padding); background: linear-gradient(135deg, #18CFFB 0%, #3A9FF8 33%, #5B6FF5 66%, #7D3FF2 100%); }
.design-tool-container { max-width: 1120px; margin: 0 auto; padding: 0 16px; }
.design-tool-header { text-align: center; margin-bottom: 48px; }
.design-tool-wrapper { display: grid; grid-template-columns: 280px 1fr; gap: 32px; margin-bottom: 32px; }
.tool-sidebar { background: rgba(255, 255, 255, 0.05); border-radius: 16px; padding: 24px; border: 2px solid rgba(255, 255, 255, 0.1); height: fit-content; }
.tool-section { margin-bottom: 24px; }
.tool-section:last-child { margin-bottom: 0; }
.tool-section-title { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--turquoise); margin-bottom: 12px; }
.tool-select, .tool-input, .email-input { width: 100%; padding: 9.6px 12px; background: rgba(255, 255, 255, 0.1); border: 2px solid rgba(255, 255, 255, 0.2); border-radius: 8px; color: var(--white); font-size: 0.8rem; font-family: var(--font-main); transition: var(--transition-smooth); }
.tool-select:focus, .tool-input:focus, .email-input:focus { outline: none; border-color: var(--turquoise); background: rgba(255, 255, 255, 0.15); }
.tool-select option { background: var(--navy); color: var(--white); }
.color-picker-wrapper { display: flex; align-items: center; gap: 12px; }
.color-input { width: 48px; height: 48px; border: 2px solid rgba(255, 255, 255, 0.2); border-radius: 8px; cursor: pointer; transition: var(--transition-smooth); }
.color-input:hover { border-color: var(--turquoise); transform: scale(1.05); }
.color-label { font-size: 0.76rem; color: var(--lavender); }
.tool-buttons { display: flex; flex-direction: column; gap: 12px; }
.tool-btn { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px; background: rgba(24, 207, 251, 0.1); border: 2px solid var(--turquoise); border-radius: 8px; color: var(--white); font-size: 0.76rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; transition: var(--transition-smooth); }
.tool-btn svg { width: 16px; height: 16px; }
.tool-btn:hover { background: var(--turquoise); transform: translateX(4px); }
.canvas-container { background: rgba(255, 255, 255, 0.95); border-radius: 16px; padding: 32px; display: flex; flex-direction: column; align-items: center; gap: 16px; border: 2px solid rgba(255, 255, 255, 0.2); }
#designCanvas { max-width: 100%; border: 2px solid var(--navy); border-radius: 8px; cursor: crosshair; }
.canvas-info { color: var(--navy); font-size: 0.72rem; opacity: 0.7; }
.download-section { background: rgba(255, 255, 255, 0.05); border-radius: 16px; padding: 32px; text-align: center; border: 2px solid rgba(255, 255, 255, 0.1); }
.email-capture { display: flex; gap: 12px; max-width: 480px; margin: 0 auto 12px; }
.email-input { flex: 1; }
.download-btn { padding: 12px 24px; background: linear-gradient(135deg, var(--pink), var(--purple)); color: var(--white); border-radius: 8px; font-weight: 600; text-transform: uppercase; display: flex; align-items: center; gap: 8px; transition: var(--transition-smooth); }
.download-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.download-btn:not(:disabled):hover { transform: translateY(-2.4px); box-shadow: 0 8px 24px rgba(235, 60, 212, 0.4); }
.download-btn svg { width: 16px; height: 16px; }
.download-note { color: var(--lavender); font-size: 0.72rem; }

/* SHOWCASE */
.showcase { padding: var(--section-padding); background: var(--navy); overflow: hidden; }
.showcase-container { max-width: 1120px; margin: 0 auto; padding: 0 16px; }
.showcase-header { text-align: center; margin-bottom: 64px; }
.showcase-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; }
.showcase-item { position: relative; overflow: hidden; border-radius: 20px; height: 400px; transition: var(--transition-smooth); }
.showcase-item:hover { transform: scale(1.02); box-shadow: 0 12px 40px rgba(24, 207, 251, 0.3); }
.showcase-image { width: 100%; height: 100%; position: relative; overflow: hidden; }
.showcase-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-smooth); }
.showcase-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20, 44, 89, 0.9) 0%, rgba(20, 44, 89, 0.6) 50%, rgba(20, 44, 89, 0.3) 100%); display: flex; align-items: flex-end; justify-content: center; padding: 30px; opacity: 1; transition: var(--transition-smooth); }
.showcase-title { font-size: 1.3rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 1px; text-align: center; }
.showcase-item:hover .showcase-image img { transform: scale(1.1); filter: brightness(1.15); }
.showcase-item:hover .showcase-overlay { background: linear-gradient(to top, rgba(20, 44, 89, 0.7) 0%, rgba(20, 44, 89, 0.3) 50%, rgba(20, 44, 89, 0.1) 100%); }

/* ADVERTISING FEATURE */
.advertising-feature { padding: 100px 20px; background: var(--navy); text-align: center; }
.advertising-content { max-width: 720px; margin: 0 auto; }
.advertising-description { font-size: 1.3rem; color: var(--lavender); margin: 30px 0 50px; line-height: 1.6; }
.advertising-services { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.service-tag { padding: 12px 24px; background: linear-gradient(135deg, var(--turquoise), var(--purple)); color: var(--white); border-radius: 40px; font-weight: 600; text-transform: uppercase; font-size: 0.72rem; letter-spacing: 1px; transition: var(--transition-smooth); }
.service-tag:hover { transform: translateY(-2.4px); box-shadow: 0 8px 24px rgba(24, 207, 251, 0.4); }

/* CONTACT */
.contact { padding: var(--section-padding); position: relative; overflow: hidden; background: linear-gradient(135deg, var(--pink), var(--orange)); min-height: 60vh; display: flex; align-items: center; justify-content: center; }
.contact-content { position: relative; z-index: 10; text-align: center; max-width: 640px; padding: 0 16px; }
.contact-title { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 900; text-transform: uppercase; color: var(--navy); margin-bottom: 12px; line-height: 1.1; }
.contact-subtitle { font-size: 1.5rem; color: var(--navy); margin-bottom: 50px; opacity: 0.8; }
.contact-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-primary { background: var(--navy); border: 2px solid var(--navy); }
.cta-primary:hover { background: var(--purple); border-color: var(--purple); }
.cta-secondary { background: transparent; border: 2px solid var(--navy); color: var(--navy); }
.cta-secondary::before { background: var(--navy); }
.cta-secondary:hover { color: var(--white); }
.contact-background { position: absolute; inset: 0; }
.gradient-orb { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.3; }
.orb-1 { width: 400px; height: 400px; background: var(--pink); top: -100px; right: -100px; }
.orb-2 { width: 500px; height: 500px; background: var(--purple); bottom: -150px; left: -150px; }

/* FOOTER */
.footer { background: var(--navy); padding: 40px 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.footer-content { max-width: var(--container-max); margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.footer-logo img { height: 40px; }
.footer-text { color: var(--lavender); font-size: 0.9rem; text-align: center; }

/* CHATBOT */
.chat-widget { position: fixed; bottom: 30px; right: 30px; width: 400px; height: 600px; background: rgba(20, 44, 89, 0.98); backdrop-filter: blur(20px); border-radius: 20px; border: 2px solid var(--turquoise); box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5); display: flex; flex-direction: column; z-index: 9999; transform: translateY(700px); transition: transform 0.3s ease; }
.chat-widget.open { transform: translateY(0); }
.chat-header { padding: 20px; background: linear-gradient(135deg, var(--turquoise), var(--purple)); border-radius: 18px 18px 0 0; }
.chat-header-content { display: flex; justify-content: space-between; align-items: center; }
.chat-status { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.status-dot { width: 10px; height: 10px; background: #4ADE80; border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.chat-close { width: 35px; height: 35px; border-radius: 50%; background: rgba(255, 255, 255, 0.2); display: flex; align-items: center; justify-content: center; color: var(--white); transition: var(--transition-smooth); }
.chat-close:hover { background: rgba(255, 255, 255, 0.3); }
.chat-close svg { width: 20px; height: 20px; }
.chat-messages { flex: 1; padding: 20px; overflow-y: auto; display: flex; flex-direction: column; gap: 15px; }
.chat-messages::-webkit-scrollbar { width: 6px; }
.chat-messages::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.05); border-radius: 10px; }
.chat-messages::-webkit-scrollbar-thumb { background: var(--turquoise); border-radius: 10px; }
.chat-message { display: flex; animation: messageSlide 0.3s ease; }
@keyframes messageSlide { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.bot-message .message-content { background: rgba(24, 207, 251, 0.1); border: 1px solid var(--turquoise); border-radius: 15px 15px 15px 5px; padding: 12px 15px; }
.user-message { justify-content: flex-end; }
.user-message .message-content { background: var(--turquoise); border-radius: 15px 15px 5px 15px; padding: 12px 15px; color: var(--navy); }
.chat-input-container { padding: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); display: flex; gap: 10px; }
.chat-input { flex: 1; padding: 12px 15px; background: rgba(255, 255, 255, 0.1); border: 2px solid rgba(255, 255, 255, 0.2); border-radius: 25px; color: var(--white); font-size: 0.95rem; transition: var(--transition-smooth); }
.chat-input:focus { outline: none; border-color: var(--turquoise); }
.chat-input::placeholder { color: var(--lavender); }
.chat-send { width: 45px; height: 45px; border-radius: 50%; background: var(--turquoise); display: flex; align-items: center; justify-content: center; color: var(--navy); transition: var(--transition-smooth); }
.chat-send:hover { background: var(--pink); transform: scale(1.05); }
.chat-send svg { width: 22px; height: 22px; }

/* TIMON THE MEERKAT (16-BIT) */
.meerkat-container { position: absolute; bottom: 10px; left: 10px; width: 40px; height: 80px; opacity: 0; transform: scale(0); transition: all 0.4s ease; pointer-events: none; z-index: 5; }
.chat-widget.open .meerkat-container { opacity: 1; transform: scale(1); }
.meerkat { width: 100%; height: 100%; position: relative; animation: timonDance 1.2s ease-in-out infinite; image-rendering: pixelated; }
/* Head */
.meerkat::before { content: ''; position: absolute; top: 2px; left: 50%; transform: translateX(-50%); width: 16px; height: 14px; background: #D4A574; border: 2px solid #000; border-radius: 60% 60% 50% 50%; box-shadow: -3px 4px 0 0 #000, 3px 4px 0 0 #000, -4px 2px 0 0 #8B6F47, 4px 2px 0 0 #8B6F47, 0 6px 0 0 #654321; }
/* Body - tall and thin like Timon */
.meerkat::after { content: ''; position: absolute; top: 18px; left: 50%; transform: translateX(-50%); width: 14px; height: 48px; background: linear-gradient(to bottom, #D4A574 0%, #D4A574 30%, #F5DEB3 30%, #F5DEB3 70%, #D4A574 70%); border: 2px solid #000; border-radius: 25% 25% 15% 15%; box-shadow: -5px 8px 0 0 #8B6F47, 5px 8px 0 0 #8B6F47, -1px 50px 0 0 #000, 1px 50px 0 0 #000, -3px 52px 0 0 #654321, 3px 52px 0 0 #654321, 0 4px 0 0 #654321 inset; }
@keyframes timonDance { 0%, 100% { transform: translateY(0) rotate(-1deg); } 25% { transform: translateY(-8px) rotate(2deg); } 50% { transform: translateY(-2px) rotate(-1deg); } 75% { transform: translateY(-8px) rotate(2deg); } }

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-menu { display: none; }
    .mobile-menu-toggle { display: flex; }
    .about-container, .design-tool-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .services-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr; }
    .showcase-grid { grid-template-columns: 1fr; }
    .chat-widget { width: 100%; right: 0; bottom: 0; height: 100vh; border-radius: 0; }
    .tool-sidebar { order: 2; }
    .canvas-container { order: 1; }
}
