:root {
    --bg-main: #060606;
    --bg-card: #0F0F11;
    --border-color: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.15);
    --text-primary: #FFFFFF;
    --text-secondary: #999999;
    --text-muted: #666666;
    
    --accent: #FFFFFF;
    --accent-hover: #E5E5E5;
    
    --bg-accent: #FFFFFF;
    --text-on-accent: #000000;
    
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 40px;
    --radius-xl: 56px;
    --radius-full: 9999px;
    
    --container-max: 1400px;
    --section-padding: clamp(60px, 8vw, 120px);
    
    --space-s: 1rem;
    --space-m: 2rem;
    --space-l: 3.5rem;
    --space-xl: 5rem;

    --fs-h1: clamp(3rem, 10vw, 6.5rem);
    --fs-h2: clamp(2.25rem, 6vw, 4.5rem);
    --fs-h3: clamp(1.25rem, 3vw, 2.5rem);
    --fs-body: 0.875rem;
    --fs-nav: 0.875rem;
    
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Basic */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: var(--fs-body);
    line-height: 1.6;
    letter-spacing: -0.01em;
    min-height: 100vh;
}

h1 { font-size: var(--fs-h1); line-height: 1.1; letter-spacing: -0.05em; font-weight: 700; }
h2 { font-size: var(--fs-h2); line-height: 1.2; letter-spacing: -0.04em; font-weight: 700; }
h3 { font-size: var(--fs-h3); line-height: 1.3; font-weight: 600; }

/* Typography Hierarchy Classes */
.text-lg { font-size: 1.125rem !important; line-height: 1.5; }
.text-base { font-size: var(--fs-body) !important; line-height: 1.6; }
.text-sm { font-size: 0.8125rem !important; line-height: 1.5; }

/* Global Body Reset */
p, .section-subtitle, .bento-p, .case-desc, .feature-desc {
    font-size: var(--fs-body);
    line-height: 1.6;
    color: var(--text-secondary);
}

.hero-desc {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: var(--section-padding) 0;
}

.w-full { width: 100%; }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.mt-s { margin-top: var(--space-s); }
.mt-m { margin-top: var(--space-m); }
.mt-l { margin-top: var(--space-l); }
.mb-s { margin-bottom: var(--space-s); }

/* Ambient Spotlight Glow */
.spotlight {
    position: fixed;
    top: -30vh;
    left: 50%;
    transform: translateX(-50%);
    width: 80vw;
    height: 60vh;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.03) 0%, rgba(6,6,6,0) 60%);
    pointer-events: none;
    z-index: -1;
}

/* Typography Gradient */
.text-gradient {
    background: linear-gradient(180deg, #FFFFFF 0%, #777777 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Base Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    text-align: center;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
}

.btn-primary {
    background-color: var(--bg-accent);
    color: var(--text-on-accent);
}

.btn-secondary {
    background-color: rgba(255,255,255,0.05);
    border-color: var(--border-color);
    color: var(--text-primary);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--border-color);
    color: var(--text-primary);
}

/* MICRO ANIMATIONS - Buttons & Links */
.btn-anim {
    position: relative;
    overflow: hidden;
}
.btn-anim:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,255,255,0.15);
}
.btn-anim .btn-arrow {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-anim:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-anim-scale:hover {
    transform: scale(1.03);
    background-color: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
}

.hover-underline {
    position: relative;
}
.hover-underline::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: currentColor;
    transition: width 0.3s ease;
}
.hover-underline:hover::after {
    width: 100%;
}

.group:hover .group-hover\:spin {
    animation: spin 3s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* MICRO ANIMATIONS - SVG Icons */
.svg-path-anim {
    stroke-dasharray: 100;
    stroke-dashoffset: 0;
    animation: drawPath 3s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

@keyframes drawPath {
    0% { stroke-dashoffset: 100; }
    100% { stroke-dashoffset: 0; }
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10B981;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.bounce-anim-slow {
    animation: float 4s ease-in-out infinite;
}
.bounce-anim {
    animation: bounce 2s ease-in-out infinite alternate;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}
@keyframes bounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-3px); }
}

/* Badge */
.badge {
    display: inline-block;
    padding: 0.35rem 0.875rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    background: rgba(255,255,255,0.02);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.25rem 0;
    z-index: 100;
    background: rgba(6, 6, 6, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.mobile-menu-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    z-index: 101;
    transition: transform 0.3s ease;
}

@media (max-width: 899px) {
    .hero-slider::before{
        background: none !important;
    }
    .hero-slider::after{
        background: none !important;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        padding: 2.5rem 1.5rem;
        border-bottom: 1px solid var(--border-color);
        gap: 1.5rem;
        align-items: flex-start;
        text-align: left;
        z-index: 99;
    }

    .nav-links.active {
        display: flex;
        animation: slideDownNav 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .nav-links a {
        font-size: 1.25rem;
        width: 100%;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-button {
        background: var(--accent);
        color: var(--bg-main) !important;
        padding: 1rem 1.5rem !important;
        border-radius: var(--radius-md) !important;
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }

    .nav-actions { display: none !important; }
}

@keyframes slideDownNav {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 900px) {
    .nav-links { 
        display: flex; 
        align-items: center; 
        gap: 2rem;
        background: rgba(255,255,255,0.03);
        padding: 0.5rem 1.5rem;
        border-radius: var(--radius-full);
        border: 1px solid var(--border-color);
    }
    .mobile-menu-btn { display: none; }
}

.nav-actions {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 900px) {
    .nav-actions { display: flex; flex: 1; justify-content: flex-end; }
}

.nav-link-secondary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

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

.badge-count {
    background: rgba(255,255,255,0.1);
    color: var(--text-primary);
    padding: 0.1rem 0.4rem;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
}

.nav-cta {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

.mobile-menu-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    display: block;
}

@media (min-width: 900px) {
    .mobile-menu-btn { display: none; }
}

/* Sections */
.section {
    padding: var(--space-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-l);
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title { font-size: 3.5rem; }
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Card Hover Interactions */
.bento-hover {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
    position: relative;
}

.bento-hover::after {
    background: radial-gradient(
        600px circle at var(--mouse-x, 0) var(--mouse-y, 0),
        rgba(255, 255, 255, 0.04),
        transparent 40%
    );
    border-radius: inherit;
    content: "";
    opacity: 0;
    pointer-events: none;
    position: absolute;
    inset: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.bento-hover:hover::after {
    opacity: 1;
}

.bento-hover:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Premium Stacked Carousel */
.bento-carousel-container {
    position: relative;
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 2rem;
    perspective: 1000px;
}

.bento-carousel-track {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
}

.bento-slide {
    position: absolute;
    width: 70%;
    height: 200px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0;
    transform: scale(0.8) translateZ(-100px);
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bento-slide.prev {
    opacity: 0.4;
    transform: translateX(-40%) scale(0.8);
    z-index: 1;
    cursor: pointer;
}

.bento-slide.active {
    opacity: 1;
    transform: translateX(0) scale(1.1);
    z-index: 2;
}

.bento-slide.next {
    opacity: 0.4;
    transform: translateX(40%) scale(0.8);
    z-index: 1;
    cursor: pointer;
}

.bento-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    background: #1a1a1a;
    padding: 2px;
}

.bento-carousel-dots {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.bento-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.bento-dot.active {
    width: 15px;
    border-radius: 10px;
    background: var(--text-primary);
}

/* Hero */
.hero {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 1rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    background: rgba(255,255,255,0.03);
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-title { font-size: 5.5rem; }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .hero-subtitle { font-size: 1.25rem; }
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

@media (min-width: 480px) {
    .hero-actions { flex-direction: row; }
}

.hero-trust {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

@media (min-width: 480px) {
    .hero-trust { flex-direction: row; justify-content: center; }
}

.avatars {
    display: flex;
}

.avatar-hover {
    transition: transform 0.2s ease, z-index 0.2s ease;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--bg-main);
    margin-left: -10px;
    position: relative;
}
.avatar-hover:first-child { margin-left: 0; }
.avatar-hover:hover {
    transform: translateY(-4px) scale(1.1);
    z-index: 10;
}

.trust-link { color: var(--text-primary); text-decoration: none; }
.trust-link:hover { color: var(--accent); }

/* Bento Grid System */
.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: minmax(280px, auto);
    }
    .col-span-1 { grid-column: span 1; }
    .col-span-2 { grid-column: span 2; }
}

@media (max-width: 767px) {
    .hide-mobile { display: none; }
}

.bento-card {
    position: relative;
    background: #0f0f0f;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 32px;
    padding: 2.5rem;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Service-Specific Backgrounds & Textures */
.bento-card[data-service="web"] {
    background: linear-gradient(145deg, #151515 0%, #050505 100%);
}

.bento-card[data-service="uiux"] {
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.1), transparent 70%), 
                linear-gradient(145deg, #050505 0%, #0c1221 100%);
}

.bento-card[data-service="branding"] {
    background: radial-gradient(circle at top right, rgba(159, 18, 57, 0.12), transparent 70%),
                linear-gradient(165deg, #050505 0%, #150303 100%); /* Even darker obsidian base */
}

.bento-card[data-service="graphic"] {
    background: radial-gradient(circle at top right, rgba(16, 185, 129, 0.1), transparent 70%),
                linear-gradient(145deg, #050505 0%, #03241b 100%);
}

.bento-content {
    position: relative;
    z-index: 10;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5); /* Boost text pop */
}

@media (min-width: 768px) {
    .col-span-2 .bento-content {
        max-width: 48%; /* More room for visuals */
    }
}

/* Integrated Mockups with Reference Blending */
.bento-mockup {
    position: absolute;
    top: 50%;
    right: -5%;
    transform: translateY(-50%) perspective(1500px) rotateY(-18deg) rotateX(5deg);
    width: 65%;
    height: auto;
    z-index: 1;
    pointer-events: none;
    opacity: 0.5;
    mix-blend-mode: screen; 
    -webkit-mask-image: linear-gradient(to left, black 50%, transparent 100%);
    mask-image: linear-gradient(to left, black 50%, transparent 100%);
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Specfic legibility fix for Branding */
.bento-card[data-service="branding"] .bento-mockup {
    opacity: 0.35; /* Lean back visual for text readability */
    filter: saturate(0.7) brightness(0.8);
}

.bento-card:hover .bento-mockup {
    opacity: 0.85;
    transform: translateY(-52%) perspective(1500px) rotateY(-12deg) rotateX(2deg) scale(1.05);
    right: 0%;
}

.bento-card[data-service="web"]:hover .bento-carousel-container {
    transform: scale(1.02);
}

/* Service Highlights */
.highlight-uiux { color: #60a5fa; font-weight: 600; }
.highlight-branding { color: #fb7185; font-weight: 600; }
.highlight-graphic { color: #34d399; font-weight: 600; }
.highlight-web { color: #fff; font-weight: 600; }

.bento-icon {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    background: rgba(255,255,255,0.05);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
}

.bento-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.bento-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

/* Bento abstract visuals */
.bento-visual {
    position: absolute;
    right: -5%;
    bottom: -5%;
    max-width: 55%;
    max-height: 90%;
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

.visual-speed {
    display: flex;
    gap: 0.5rem;
    padding: 2rem;
    transform: rotate(-15deg);
}

.speed-bar {
    width: 8px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
    transition: transform 0.5s ease;
}
.speed-bar:nth-child(2) { height: 100px; background: rgba(255,255,255,0.4); }
.speed-bar:nth-child(3) { height: 140px; background: var(--text-primary); }

.bento-hover:hover .speed-bar:nth-child(1) { transform: scaleY(1.2); }
.bento-hover:hover .speed-bar:nth-child(2) { transform: scaleY(1.1); transition-delay: 0.1s;}
.bento-hover:hover .speed-bar:nth-child(3) { transform: scaleY(1.05); transition-delay: 0.2s;}

.visual-pricing {
    padding: 2rem;
}

.price-tag {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--text-primary);
    transform: rotate(5deg) scale(1.2);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.bento-hover:hover .price-tag {
    transform: rotate(0deg) scale(1.25);
    border-color: rgba(255,255,255,0.4);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-header svg {
    color: var(--text-primary);
}

.service-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

/* Pricing Section */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn.active {
    background: rgba(255,255,255,0.1);
    color: var(--text-primary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: start; }
}

/* Tooltip Styles */
.has-tooltip {
    position: relative;
    cursor: help;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-decoration-color: rgba(255,255,255,0.3);
    text-underline-offset: 4px;
}

.tooltip-text {
    visibility: hidden;
    width: 220px;
    background-color: #111;
    color: #fff;
    text-align: center;
    border-radius: 12px;
    padding: 12px;
    position: absolute;
    z-index: 100;
    bottom: 140%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    font-size: 0.8125rem;
    line-height: 1.5;
    pointer-events: none;
}

.tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: #111 transparent transparent transparent;
}

.has-tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
    bottom: 125%;
}


.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-top-icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.icon-box {
    width: 44px;
    height: 44px;
    background: #000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.08);
}

.tool-icons {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.pricing-header-row {
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.pricing-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.75rem;
    min-height: 3em; 
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: 0.5rem;
}

.pricing-price-small {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pricing-amount {
    font-size: 2.25rem;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: -0.03em;
}

.pricing-divider {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
    position: relative;
    margin: 1.25rem 0;
}

.pricing-divider::before, .pricing-divider::after {
    content: '';
    position: absolute;
    top: -2.5px;
    width: 6px; height: 6px;
    background: #555;
    transform: rotate(45deg);
}
.pricing-divider::before { left: 0; }
.pricing-divider::after { right: 0; }

.pricing-card.highlighted {
    background: linear-gradient(180deg, #1A1A1E 0%, #0F0F11 100%);
    border-color: rgba(255,255,255,0.15);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 2.5rem; /* Aligned with content left */
    background: #FFFFFF;
    color: #000000;
    padding: 0.4rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 4px 15px rgba(0,0,0,0.6);
    z-index: 10;
}

.pricing-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.02em;
}

.pricing-header p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.pricing-features ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
}

.pricing-cta {
    margin-top: 3rem;
    margin-top: auto;
    padding-top: 2rem;
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #E5E5E5;
}

.review-author {
    display: flex;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.author-info strong {
    display: block;
    font-weight: 600;
    font-size: 0.9375rem;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* FAQ - Centered Layout */
.faq-container {
    max-width: 800px !important;
    margin: 0 auto;
    text-align: center;
}

.faq-header {
    margin-bottom: var(--space-l);
}

.faq-container .accordion {
    text-align: left;
}

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

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
}

.social-link:hover {
    background: rgba(255,255,255,0.1);
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
}

.accordion-header svg {
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
    color: var(--text-secondary);
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

.accordion-item.active .accordion-header svg {
    transform: rotate(45deg);
}

/* Premium CTA Card */
.cta-card {
    background: radial-gradient(circle at top left, rgba(255,255,255,0.03) 0%, transparent 40%),
                rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 6rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.cta-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 120%, rgba(255,255,255,0.1), transparent 60%);
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.cta-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5);
}

.cta-card h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
    position: relative;
    z-index: 1;
}

.cta-card p {
    color: var(--text-secondary);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.cta-card .btn {
    position: relative;
    z-index: 1;
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 2rem 0;
    margin-top: 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .footer-top { grid-template-columns: 2fr 1fr; }
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.link-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.link-group h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.link-group a {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Base Scroll Observer Animations */
.target-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.target-fade.in-view {
    opacity: 1;
    transform: translateY(0);
}


/* =============================================
   PROJECTS SECTION
   ============================================= */

.projects {
    background: transparent;
}

.portfolio-hero {
    padding-top: 160px;
    padding-bottom: 60px;
}

.projects-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .projects-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .projects-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

.project-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.project-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.project-mockup {
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-mockup {
    transform: scale(1.03);
}

/* Hide mockup decorations when a real image is present */
.project-mockup.has-image::before,
.project-mockup.has-image::after {
    display: none !important;
}

.project-mockup.has-image+.project-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.project-image:has(.has-image)::before,
.project-image:has(.has-image)::after {
    display: none !important;
}

.novodots-mockup {
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
    position: relative;
}

.novodots-mockup::after {
    content: 'Novodots';
    position: absolute;
    bottom: 40px;
    left: 40px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.08);
    letter-spacing: -2px;
}

.grocommerce-mockup {
    background: linear-gradient(145deg, #0d1117 0%, #161b22 40%, #1f2937 100%);
    position: relative;
}

.grocommerce-mockup::after {
    content: 'GroCommerce';
    position: absolute;
    bottom: 40px;
    left: 40px;
    font-size: 42px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.08);
    letter-spacing: -2px;
}

.wealthwave-mockup {
    background: linear-gradient(145deg, #0f0f23 0%, #1a1a3e 40%, #2d2b55 100%);
    position: relative;
}

.wealthwave-mockup::after {
    content: 'Wealthwave';
    position: absolute;
    bottom: 40px;
    left: 40px;
    font-size: 44px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.08);
    letter-spacing: -2px;
}

.aaexports-mockup {
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 40%, #3d3d3d 100%);
    position: relative;
}

.aaexports-mockup::after {
    content: 'AA Exports';
    position: absolute;
    bottom: 40px;
    left: 40px;
    font-size: 44px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.08);
    letter-spacing: -2px;
}

.thecado-mockup {
    background: linear-gradient(145deg, #0a0a1a 0%, #1a0a2e 40%, #2d1345 100%);
    position: relative;
}

.thecado-mockup::after {
    content: 'The Cado';
    position: absolute;
    bottom: 40px;
    left: 40px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.08);
    letter-spacing: -2px;
}

.chillax-mockup {
    background: linear-gradient(145deg, #1a2e1a 0%, #213e16 40%, #34600f 100%);
    position: relative;
}

.chillax-mockup::after {
    content: 'Chillax';
    position: absolute;
    bottom: 40px;
    left: 40px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.08);
    letter-spacing: -2px;
}

/* Laptop mockup overlay for project cards */
.project-mockup::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65%;
    height: 70%;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* "Window" chrome — three dots top-left */
.project-mockup::after {
    font-family: var(--font);
}

.sienna-mockup::after,
.growly-mockup::after,
.glidex-mockup::after,
.aether-mockup::after,
.vaultx-mockup::after {
    bottom: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65%;
    height: 70%;
    font-size: 0;
    background: transparent;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* Decorative nav bar inside mockup */
.project-image::after {
    content: '● ● ●';
    position: absolute;
    top: calc(15% + 8px);
    left: calc(17.5% + 16px);
    font-size: 6px;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.2);
    z-index: 3;
}

/* Decorative content lines */
.project-image::before {
    content: '';
    position: absolute;
    top: calc(15% + 28px);
    left: 17.5%;
    width: 65%;
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    z-index: 3;
}

.project-info {
    padding: 28px 36px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.project-info h5 {
    font-size: 18px;
    font-weight: 700;
}

.project-info p {
    font-size: 14px;
    color: var(--text-secondary);
    flex: 1;
}

.view-project {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    background: transparent;
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    white-space: nowrap;
    transition: var(--transition);
}

.view-project:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */

.testimonials {
    background: transparent;
    overflow: hidden;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-tertiary);
}

.trust-avatars {
    display: flex;
}

.trust-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: var(--text-primary);
    border: 2px solid transparent;
    margin-right: -8px;
}

.testimonials-marquee {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    scrollbar-width: none;
}

.testimonials-marquee::-webkit-scrollbar {
    display: none;
}

.marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    padding: 20px 5vw;
}

.testimonial-card {
    flex-shrink: 0;
    width: 380px;
    scroll-snap-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: #d0d0d0;
    box-shadow: var(--shadow-md);
}

.stars {
    color: #f59e0b;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-type {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 12px;
}

.testimonial-card>p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-primary);
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.testimonial-author span {
    font-size: 12px;
    color: var(--text-tertiary);
}



/* bento visual positioning was moved to top section */
.bento-gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    mix-blend-mode: screen;
    transition: var(--transition);
}
.bento-hover:hover .bento-gif {
    opacity: 1;
    transform: scale(1.05);
}

/* Portfolio Filters */
.filter-btn {
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
}

.filter-btn.active {
    background: var(--text-primary);
    color: var(--bg-main);
    border-color: var(--text-primary);
}

/* Hero Slider */
.hero-slider {
    width: 100%;
    overflow: hidden;
    padding: 60px 0;
    position: relative;
    background: transparent;
}

.hero-slider::before,
.hero-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.hero-slider::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-main) 0%, transparent 100%);
}

.hero-slider::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-main) 0%, transparent 100%);
}

.hero-slider-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.hero-slider-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 20px)); }
}

.hero-slide {
    flex: 0 0 450px;
}

.slide-mockup {
    width: 100%;
    height: 280px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.slide-mockup:hover {
    border-color: var(--border-hover);
    transform: translateY(-8px);
}

.hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: var(--transition);
}

.slide-mockup:hover .hero-slide-img {
    opacity: 1;
    transform: scale(1.05);
}

/* Pricing Icon Fixes */
.pricing-tabs .tab-btn {
    padding: 8px 16px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.pricing-tabs .tab-btn.active {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.tool-icons {
    display: flex;
    align-items: center;
    gap: 4px;
}

.tool-icons span {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
}
.pricing-tabs .tab-btn.active svg {
    display: none;
}

/* Contact Form Section */
.contact-section {
    padding: var(--space-xl) 0;
    position: relative;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact-info h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
}

.contact-info p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.method-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.contact-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    position: relative;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.06);
}

/* Chatbot styles */
.chatbot-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chatbot-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--bg-main);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: var(--transition);
    animation: chatPulse 2s infinite;
}

@keyframes chatPulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.chatbot-btn:hover {
    transform: scale(1.1);
    animation: none;
}

/* Premium Chatbot Overhaul */
.chatbot-window {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 380px;
    height: 550px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    z-index: 1000;
    display: none;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.chatbot-window.active {
    display: flex;
    transform: translateY(0) scale(1);
    opacity: 1;
}

.chatbot-header {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-messages {
    flex: 1;
    padding: 1.25rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    scrollbar-width: none;
}
.chatbot-messages::-webkit-scrollbar { display: none; }

.chat-msg {
    max-width: 85%;
    padding: 0.875rem 1.125rem;
    border-radius: 20px;
    font-size: 0.9375rem;
    line-height: 1.5;
    position: relative;
    animation: msgEntry 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transform-origin: bottom;
}

@keyframes msgEntry {
    from { opacity: 0; transform: translateY(20px) scale(0.8); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.msg-bot {
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.9);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    margin-left: 32px;
}

/* Bot Avatar */
.msg-bot::before {
    content: "";
    position: absolute;
    left: -32px;
    bottom: 0;
    width: 24px;
    height: 24px;
    background: var(--accent);
    border-radius: 50%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z"></path></svg>');
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
}

.msg-user {
    background: var(--accent);
    color: var(--bg-main);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    font-weight: 500;
}

/* Typing Indicator */
.typing-indicator {
    display: none;
    gap: 4px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    width: fit-content;
    margin-left: 32px;
}

.typing-indicator.active { display: flex; }

.typing-dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: dotBounce 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotBounce {
    0%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-6px); }
}

.chat-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.chat-option-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.5rem 1.125rem;
    border-radius: 100px;
    font-size: 0.8125rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-option-btn:hover {
    background: white;
    color: black;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.chatbot-input {
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    gap: 0.75rem;
}

.chatbot-input input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 0.75rem 1.25rem;
    color: white;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.chatbot-input input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
}

