/* =============================================
   IdanAI - Premium Professional Design
   Ultra Modern UI - Light Theme
   ============================================= */

:root {
    --primary: #7c3aed;
    --primary-dark: #6d28d9;
    --primary-light: #a78bfa;
    --secondary: #ec4899;
    --accent: #06b6d4;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --gold: #fbbf24;

    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-card: #ffffff;
    --bg-dark: #0f172a;
    --bg-gradient-light: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 50%, #fdf4ff 100%);
    --bg-hero-gradient: linear-gradient(135deg, #ffffff 0%, #f5f3ff 25%, #fdf4ff 50%, #fff1f2 75%, #fff7ed 100%);

    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --border-color: #e2e8f0;

    --font-family: "Rubik", -apple-system, BlinkMacSystemFont, sans-serif;
    --section-padding: 120px;
    --container-max: 1280px;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 60px rgba(124, 58, 237, 0.15);
    --shadow-glow-pink: 0 0 60px rgba(236, 72, 153, 0.1);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-card-hover: 0 20px 40px rgba(0, 0, 0, 0.1);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-blur: blur(20px);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--font-family);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}
a {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
    height: auto;
}
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(124, 58, 237, 0.1);
}
.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
}
.logo-icon {
    font-size: 2rem;
    animation: pulse-glow 2s ease-in-out infinite;
}
@keyframes pulse-glow {
    0%,
    100% {
        filter: drop-shadow(0 0 5px rgba(124, 58, 237, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(124, 58, 237, 0.5));
    }
}
.logo-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary), #f97316);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    animation: gradient-shift 3s ease infinite;
}
@keyframes gradient-shift {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
}
.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 18px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    position: relative;
}
.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    transition: var(--transition);
}
.nav-links a:hover {
    color: var(--primary);
}
.nav-links a:hover::after {
    width: 60%;
}
.nav-links a.active {
    color: var(--primary);
    background: rgba(124, 58, 237, 0.08);
    font-weight: 600;
}
.nav-links a.active::after {
    width: 60%;
}
.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
    position: relative;
    overflow: hidden;
}
.nav-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}
.nav-cta:hover::before {
    left: 100%;
}
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.4);
}
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}
.btn:hover::before {
    left: 100%;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.4);
}
.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-md);
}
.btn-secondary:hover {
    background: var(--bg-secondary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}
.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
    border-radius: var(--radius-xl);
}
.btn-icon {
    font-size: 1.3em;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 24px 100px;
    max-width: var(--container-max);
    margin: 0 auto;
    gap: 80px;
    position: relative;
    overflow: hidden;
}

/* Hero Background - Light Theme */
body {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 30%, #f5f3ff 50%, #fdf4ff 70%, #fff1f2 100%);
    min-height: 100vh;
}
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(124, 58, 237, 0.08) 0%, transparent 50%), radial-gradient(ellipse 60% 40% at 100% 50%, rgba(236, 72, 153, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 0% 50%, rgba(6, 182, 212, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Animated Background Orbs - Light Version */
.hero::before {
    content: "";
    position: absolute;
    top: 10%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
}
.hero::after {
    content: "";
    position: absolute;
    bottom: 20%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: float 6s ease-in-out infinite reverse;
    pointer-events: none;
}
@keyframes float {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-content {
    flex: 1;
    max-width: 620px;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(236, 72, 153, 0.1));
    backdrop-filter: blur(10px);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(124, 58, 237, 0.2);
    animation: fade-in-up 0.6s ease-out;
}
.hero-badge-icon {
    animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 28px;
    letter-spacing: -1px;
    color: var(--text-primary);
    animation: fade-in-up 0.6s ease-out 0.1s both;
}
.hero-title .highlight {
    display: block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, #f97316 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease infinite;
}
.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
    animation: fade-in-up 0.6s ease-out 0.2s both;
}
.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fade-in-up 0.6s ease-out 0.3s both;
}
.hero-stats {
    display: flex;
    gap: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
    animation: fade-in-up 0.6s ease-out 0.4s both;
}
.hero-stat {
    text-align: center;
}
.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 4px;
}
.hero-stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
    animation: fade-in-up 0.8s ease-out 0.3s both;
}
.hero-mockup {
    width: 100%;
    max-width: 580px;
    background: white;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(124, 58, 237, 0.15), 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.1);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: var(--transition);
}
.hero-mockup:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
    box-shadow: 0 35px 100px rgba(124, 58, 237, 0.2), 0 15px 40px rgba(0, 0, 0, 0.1);
}
.mockup-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-color);
}
.mockup-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.mockup-header .dot.red {
    background: #ff5f56;
    box-shadow: 0 0 8px rgba(255, 95, 86, 0.4);
}
.mockup-header .dot.yellow {
    background: #ffbd2e;
    box-shadow: 0 0 8px rgba(255, 189, 46, 0.4);
}
.mockup-header .dot.green {
    background: #27ca40;
    box-shadow: 0 0 8px rgba(39, 202, 64, 0.4);
}
.mockup-content {
    height: 420px;
    overflow: hidden;
    background: white;
}
.mockup-content iframe {
    width: 100%;
    height: 100%;
    /* transform: scale(0.75); */
    transform-origin: top center;
    pointer-events: none;
}

/* Section Styles */
section {
    padding: var(--section-padding) 0;
    position: relative;
}
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(124, 58, 237, 0.15);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid rgba(124, 58, 237, 0.25);
    backdrop-filter: blur(10px);
}
.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}
.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
}
.section-cta {
    text-align: center;
    margin-top: 56px;
}

/* Light sections need white background */
.trust-section,
.problems-section,
.solutions-section,
.featured-section,
.about-preview,
.clients-section {
    background: var(--bg-primary);
    color: var(--text-primary);
}

/* Trust Section */
.trust-section {
    padding: 60px 0;
    background: white;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.trust-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-weight: 500;
    padding: 16px 24px;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}
.trust-item:hover {
    background: white;
    border-color: rgba(124, 58, 237, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.trust-icon {
    font-size: 1.5rem;
}
.trust-text {
    font-size: 0.95rem;
}
.trust-text strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* Pain Points Section - Premium Design */
.pain-points-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
    position: relative;
    overflow: hidden;
}
.pain-points-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 80% 50% at 20% 20%, rgba(239, 68, 68, 0.15) 0%, transparent 50%), radial-gradient(ellipse 60% 40% at 80% 80%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
    pointer-events: none;
}
.pain-points-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.5;
}
.pain-points-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}
.pain-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: #fca5a5;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}
.pain-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.3;
}
.pain-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}
.pain-cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}
.pain-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}
.pain-card:nth-child(1) {
    animation-delay: 0s;
}
.pain-card:nth-child(2) {
    animation-delay: 0.1s;
}
.pain-card:nth-child(3) {
    animation-delay: 0.2s;
}
.pain-card:nth-child(4) {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.pain-card-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.3) 0%, rgba(168, 85, 247, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}
.pain-card:hover .pain-card-glow {
    opacity: 1;
}
.pain-card-inner {
    position: relative;
    z-index: 1;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    height: 100%;
    transition: all 0.4s ease;
}
.pain-card:hover .pain-card-inner {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    transform: translateY(-8px);
}
.pain-emoji {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(239, 68, 68, 0.3));
    transition: transform 0.3s ease;
}
.pain-card:hover .pain-emoji {
    transform: scale(1.1) rotate(-5deg);
}
.pain-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.4;
}
.pain-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}
.pain-stat {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.pain-stat .stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ef4444, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.pain-stat .stat-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}
.pain-cta {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}
.pain-cta .cta-arrow {
    display: block;
    font-size: 2rem;
    animation: bounce 2s infinite;
    margin-bottom: 12px;
}
@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-8px);
    }
}
.pain-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Responsive Pain Points */
@media (max-width: 1200px) {
    .pain-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .pain-cards-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .pain-card-inner {
        padding: 24px 20px;
    }
    .pain-title {
        font-size: 1.8rem;
    }
}

/* Solutions Section - Eye-catching Cards */
.solutions-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #f0f9ff 100%);
    position: relative;
    overflow: hidden;
}
.solutions-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 60% 40% at 10% 30%, rgba(124, 58, 237, 0.06) 0%, transparent 50%), radial-gradient(ellipse 50% 50% at 90% 70%, rgba(6, 182, 212, 0.06) 0%, transparent 50%);
    pointer-events: none;
}
.solutions-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}
.solutions-badge {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(6, 182, 212, 0.1));
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
}
.solutions-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.3;
}
.solutions-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto;
}

/* Solutions Grid */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

/* Solution Card */
.solution-card {
    position: relative;
    background: white;
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    text-align: center;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.solution-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--card-bg);
    transition: height 0.4s ease;
}
.solution-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}
.solution-card:hover::before {
    height: 100%;
}

/* Card Shine Effect */
.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}
.solution-card:hover .card-shine {
    left: 150%;
}

/* Card Content */
.card-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}
.solution-card:hover .card-icon {
    transform: scale(1.2) rotate(-8deg);
    filter: drop-shadow(0 8px 16px rgba(255, 255, 255, 0.3));
}
.solution-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}
.solution-card:hover h3 {
    color: white;
}
.solution-card > p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}
.solution-card:hover > p {
    color: rgba(255, 255, 255, 0.9);
}

/* Card Features */
.card-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    z-index: 2;
}
.card-features span {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color 0.3s ease;
}
.solution-card:hover .card-features span {
    color: rgba(255, 255, 255, 0.85);
}

/* Responsive Solutions */
@media (max-width: 1200px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    .solution-card {
        padding: 28px 20px;
    }
}

/* Featured Projects */
.featured-section {
    background: linear-gradient(180deg, #f8fafc 0%, #f5f3ff 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}
.featured-section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
    pointer-events: none;
}
.featured-section .section-title {
    color: var(--text-primary);
}
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 32px;
}
.project-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: block;
    box-shadow: var(--shadow-md);
}
.project-card:hover {
    border-color: rgba(124, 58, 237, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(124, 58, 237, 0.15);
}
.project-thumbnail {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(236, 72, 153, 0.05));
}
.project-thumbnail iframe {
    width: 200%;
    height: 200%;
    transform: scale(0.5);
    transform-origin: top right;
    pointer-events: none;
}
.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.9), rgba(236, 72, 153, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.project-card:hover .project-overlay {
    opacity: 1;
}
.view-btn {
    background: white;
    color: var(--primary);
    padding: 14px 28px;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 0.95rem;
    transform: translateY(10px);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.project-card:hover .view-btn {
    transform: translateY(0);
}
.project-info {
    padding: 24px;
}
.project-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}
.project-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* About Preview */
.about-preview {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    padding: 48px;
    background: white;
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-xl);
}
.about-icon {
    font-size: 5rem;
    flex-shrink: 0;
    /* animation: float 4s ease-in-out infinite; */
}
.about-text h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.4;
    color: var(--text-primary);
}
.about-text p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Clients Section */
.clients-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}
.clients-section .section-title {
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 40px;
    text-align: center;
}
.clients-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}
.client-logo {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 600;
    padding: 16px 28px;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.client-logo:hover {
    color: var(--primary);
    border-color: rgba(124, 58, 237, 0.4);
    background: #f5f3ff;
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 50%, #f97316 100%);
    text-align: center;
    padding: 120px 24px;
    color: white;
    position: relative;
    overflow: hidden;
}
.final-cta::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: move-background 20s linear infinite;
}
@keyframes move-background {
    from {
        transform: translate(0, 0);
    }
    to {
        transform: translate(50px, 50px);
    }
}
.final-cta .container {
    position: relative;
    z-index: 1;
}
.final-cta h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.final-cta p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.final-cta .btn-primary {
    background: white;
    color: var(--primary);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}
.final-cta .btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* Footer */
.footer {
    background: #1e1b4b;
    color: white;
    padding: 100px 0 40px;
    position: relative;
}
.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.5), rgba(236, 72, 153, 0.5), transparent);
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}
.footer-brand .logo {
    margin-bottom: 20px;
}
.footer-brand .logo-text {
    background: linear-gradient(135deg, #a78bfa, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 300px;
}
.footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}
.footer-links a::before {
    content: "←";
    position: absolute;
    right: -20px;
    opacity: 0;
    transition: var(--transition);
}
.footer-links a:hover {
    color: white;
    transform: translateX(-4px);
}
.footer-links a:hover::before {
    right: -25px;
    opacity: 1;
}
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-contact a:hover {
    color: white;
}
.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    z-index: 999;
    animation: pulse-whatsapp 2s ease-in-out infinite;
}
@keyframes pulse-whatsapp {
    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 40px rgba(37, 211, 102, 0.6);
    }
}
.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    animation: none;
}
.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* Page Headers */
.page-header {
    padding: 180px 24px 100px;
    text-align: center;
    background: linear-gradient(180deg, #f8fafc 0%, #f5f3ff 50%, #fdf4ff 100%);
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(124, 58, 237, 0.08) 0%, transparent 60%), radial-gradient(ellipse 40% 30% at 80% 80%, rgba(236, 72, 153, 0.06) 0%, transparent 60%);
    pointer-events: none;
}
.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-primary);
    position: relative;
}
.page-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

/* Portfolio Page */
.portfolio-section {
    padding: 80px 0 120px;
    background: linear-gradient(180deg, #fdf4ff 0%, #f8fafc 30%, #ffffff 100%);
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 32px;
}

/* Project Detail Page - NEW Premium Design */

/* Project Hero - Light */
.project-hero-new {
    padding: 140px 24px 60px;
    background: linear-gradient(135deg, #ffffff 0%, #f5f3ff 40%, #ede9fe 70%, #fdf4ff 100%);
    position: relative;
    overflow: hidden;
}
.project-hero-new::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 40% at 20% 20%, rgba(124, 58, 237, 0.1) 0%, transparent 50%), radial-gradient(ellipse 40% 30% at 80% 80%, rgba(236, 72, 153, 0.08) 0%, transparent 50%);
    pointer-events: none;
}
.project-hero-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.project-hero-content {
    max-width: 650px;
}
.back-link-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 16px;
    transition: var(--transition);
}
.back-link-new:hover {
    gap: 12px;
}
.project-hero-new h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.2;
}
.project-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}
.project-hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.project-hero-stats {
    display: flex;
    gap: 16px;
}
.stat-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 20px 24px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.1);
    min-width: 110px;
}
.stat-card .stat-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 8px;
}
.stat-card .stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
}
.stat-card .stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
    margin-top: 4px;
}

/* Problem/Solution Section */
.project-problem-section {
    padding: 50px 24px;
    background: var(--bg-secondary);
}
.problem-solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.problem-box,
.solution-box {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.box-header {
    padding: 16px 24px;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.box-header.red {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    color: #dc2626;
    border-bottom: 2px solid #fecaca;
}
.box-header.green {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    color: #16a34a;
    border-bottom: 2px solid #bbf7d0;
}
.box-content {
    padding: 24px;
}
.box-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}
.box-content p:last-child {
    margin-bottom: 0;
}

/* Demo Section */
.project-demo-section {
    padding: 50px 24px;
    background: white;
}
.demo-header-text {
    text-align: center;
    margin-bottom: 30px;
}
.demo-header-text h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.demo-header-text p {
    color: var(--text-secondary);
}
.demo-iframe-container {
    height: 800px;
}

/* Features Section - Compact */
.project-features-section {
    padding: 50px 24px;
    background: var(--bg-secondary);
}
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.feature-column h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}
.automations-compact,
.integrations-compact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.automations-compact .automation-item {
    padding: 14px 18px;
    gap: 12px;
}
.automations-compact .automation-item .icon {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
}
.integrations-compact {
    flex-direction: row;
    flex-wrap: wrap;
}
.integrations-compact .integration-badge {
    padding: 10px 16px;
    font-size: 0.85rem;
}

/* Value Section */
.project-value-section {
    padding: 50px 24px;
    background: white;
    text-align: center;
}
.project-value-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 30px;
}
.value-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}
.value-grid-new .value-item {
    padding: 28px 20px;
}
.value-grid-new .value-item .icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
}
.value-grid-new .value-item h3 {
    font-size: 1rem;
}

/* Testimonial Compact */
.project-testimonial {
    padding: 40px 24px;
    background: linear-gradient(135deg, #f5f3ff 0%, #fdf4ff 100%);
}
.testimonial-compact {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}
.testimonial-quote-mark {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: -20px;
}
.testimonial-compact .testimonial-text {
    font-size: 1.15rem;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 16px;
}
.testimonial-author-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.author-avatar-small {
    font-size: 1.5rem;
}
.testimonial-author-compact strong {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Final CTA - Light */
.project-final-cta {
    padding: 60px 24px;
    background: linear-gradient(135deg, #ede9fe 0%, #fdf4ff 50%, #fff1f2 100%);
    text-align: center;
}
.final-cta-content {
    max-width: 600px;
    margin: 0 auto;
}
.final-cta-content h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.final-cta-content > p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 20px;
}
.cta-benefits-row {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.cta-benefits-row span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
}
.cta-small-note {
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* More Projects Compact */
.more-projects-compact {
    padding: 60px 24px;
    background: white;
    text-align: center;
}
.more-projects-compact h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 30px;
}
.more-projects-compact .btn {
    margin-top: 30px;
}

/* Responsive Project Page */
@media (max-width: 1024px) {
    .project-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .project-hero-stats {
        justify-content: center;
    }
    .project-hero-content {
        text-align: center;
        max-width: 100%;
    }
    .project-hero-cta {
        justify-content: center;
    }
}
@media (max-width: 768px) {
    .problem-solution-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    .project-hero-stats {
        flex-wrap: wrap;
    }
    .stat-card {
        min-width: 90px;
        padding: 16px 18px;
    }
    .demo-iframe-container {
        height: 550px;
    }
    .project-demo-section {
        padding: 40px 12px;
    }
    .project-demo {
        border-radius: var(--radius-lg);
        margin: 0 -12px;
        border-radius: 0;
    }
}
@media (max-width: 480px) {
    .cta-benefits-row {
        flex-direction: column;
        gap: 8px;
    }
}

/* Project Demo & Components */
.project-demo {
    background: white;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.1);
}
.demo-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-color);
}
.demo-dots {
    display: flex;
    gap: 8px;
}
.demo-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.demo-dots span:nth-child(1) {
    background: #ff5f56;
}
.demo-dots span:nth-child(2) {
    background: #ffbd2e;
}
.demo-dots span:nth-child(3) {
    background: #27ca40;
}
.demo-url {
    background: var(--bg-secondary);
    padding: 8px 20px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: monospace;
}
.demo-iframe-container {
    height: 650px;
    overflow: hidden;
    background: white;
    position: relative;
}
.demo-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Demo Overlay Blocker */
.demo-overlay-blocker {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
}
.demo-overlay-blocker.hidden {
    opacity: 0;
    pointer-events: none;
}
.start-demo-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: var(--radius-xl);
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.4);
    transition: all 0.3s ease;
    font-family: inherit;
}
.start-demo-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.5);
}
.start-demo-btn .play-icon {
    font-size: 1.5rem;
}
.automation-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.automation-item:hover {
    border-color: rgba(124, 58, 237, 0.3);
    transform: translateX(-4px);
}
.automation-item .icon {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(236, 72, 153, 0.1));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}
.automation-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}
.integration-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: white;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
}
.integration-badge:hover {
    border-color: rgba(124, 58, 237, 0.3);
}
.integration-badge .icon {
    font-size: 1.3rem;
}
.value-item {
    text-align: center;
    padding: 40px 24px;
    background: white;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}
.value-item:hover {
    border-color: rgba(124, 58, 237, 0.3);
    transform: translateY(-4px);
}
.value-item .icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}
.value-item h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}
.value-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Solutions Page */
.solutions-page-section {
    padding: 80px 0 120px;
    background: linear-gradient(180deg, #fdf4ff 0%, #f8fafc 50%, #ffffff 100%);
}
.solutions-list {
    display: grid;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}
.solution-item {
    display: flex;
    gap: 24px;
    padding: 32px;
    background: white;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}
.solution-item:hover {
    border-color: rgba(124, 58, 237, 0.4);
    background: #f5f3ff;
    transform: translateX(-4px);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.12);
}
.solution-item .icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(236, 72, 153, 0.1));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}
.solution-item-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}
.solution-item-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
}
.solution-price {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.15rem;
}

/* Contact Page - Premium Design */

/* Contact Hero */
.contact-hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f5f3ff 30%, #ede9fe 60%, #fdf4ff 100%);
}
.contact-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 20% 30%, rgba(124, 58, 237, 0.12) 0%, transparent 50%), radial-gradient(ellipse 50% 40% at 80% 70%, rgba(236, 72, 153, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 40% 30% at 50% 50%, rgba(6, 182, 212, 0.06) 0%, transparent 50%);
    pointer-events: none;
}
.contact-hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%237c3aed' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}
.contact-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}
.contact-badge {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(236, 72, 153, 0.1));
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
}
.contact-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}
.contact-hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    padding: 80px 0 120px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    z-index: 2;
}
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

/* Contact Info Panel */
.contact-info-panel {
    position: sticky;
    top: 120px;
}
.info-panel-header {
    margin-bottom: 32px;
}
.info-panel-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.info-panel-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Contact Cards */
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}
.contact-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-card .card-glow {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.contact-card.whatsapp .card-glow {
    background: linear-gradient(135deg, #25d366, #128c7e);
}
.contact-card.phone .card-glow {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
}
.contact-card.email .card-glow {
    background: linear-gradient(135deg, #06b6d4, #22d3ee);
}
.contact-card:hover .card-glow {
    opacity: 1;
}
.contact-card .card-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    transition: all 0.4s ease;
}
.contact-card:hover .card-content {
    background: transparent;
    border-color: transparent;
}
.contact-card .card-icon {
    font-size: 2rem;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(236, 72, 153, 0.1));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.contact-card:hover .card-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}
.contact-card .card-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.contact-card .card-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: color 0.3s ease;
}
.contact-card:hover .card-label {
    color: rgba(255, 255, 255, 0.7);
}
.contact-card .card-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    transition: color 0.3s ease;
}
.contact-card:hover .card-value {
    color: white;
}
.contact-card .card-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: color 0.3s ease;
}
.contact-card:hover .card-hint {
    color: rgba(255, 255, 255, 0.6);
}
.contact-card .card-arrow {
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-10px);
}
.contact-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(0);
    color: white;
}

/* Response Time */
.response-time {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(6, 182, 212, 0.05));
    border-radius: var(--radius-lg);
    border: 1px dashed rgba(124, 58, 237, 0.2);
}
.response-icon {
    font-size: 1.5rem;
}
.response-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.response-text strong {
    font-size: 0.95rem;
    color: var(--text-primary);
}
.response-text span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Contact Form Panel */
.contact-form-panel {
    background: white;
    padding: 48px;
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}
.form-header {
    margin-bottom: 32px;
}
.form-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.form-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Premium Form */
.premium-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.premium-form .form-group {
    margin-bottom: 24px;
}
.premium-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}
.premium-form input,
.premium-form select,
.premium-form textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--bg-secondary);
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.premium-form input:focus,
.premium-form select:focus,
.premium-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
}
.premium-form input::placeholder,
.premium-form textarea::placeholder {
    color: var(--text-muted);
}
.premium-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 16px center;
}
.premium-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.submit-btn::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: left 0.6s ease;
}
.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}
.submit-btn:hover::before {
    left: 100%;
}
.submit-btn .btn-icon {
    transition: transform 0.3s ease;
}
.submit-btn:hover .btn-icon {
    transform: translateX(-5px);
}

/* Responsive Contact */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-info-panel {
        position: static;
    }
}
@media (max-width: 600px) {
    .contact-form-panel {
        padding: 32px 24px;
    }
    .premium-form .form-row {
        grid-template-columns: 1fr;
    }
    .contact-hero h1 {
        font-size: 2rem;
    }
}

/* About Page */
.about-page-section {
    padding: 80px 0 120px;
    background: linear-gradient(180deg, #fdf4ff 0%, #f8fafc 50%, #ffffff 100%);
}
.about-main {
    display: flex;
    align-items: center;
    gap: 48px;
    max-width: 900px;
    margin: 0 auto 100px;
    padding: 56px;
    background: white;
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-xl);
}
.about-avatar {
    font-size: 7rem;
    flex-shrink: 0;
    animation: float 4s ease-in-out infinite;
}
.about-bio h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
    color: var(--text-primary);
}
.about-bio p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 1.05rem;
}
.skills-section {
    margin-bottom: 100px;
}
.skills-section h2 {
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 20px;
}
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 48px;
}
.skill-card {
    background: white;
    padding: 36px 28px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}
.skill-card:hover {
    border-color: rgba(124, 58, 237, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.12);
}
.skill-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}
.skill-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}
.skill-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}
.process-section {
    margin-bottom: 40px;
}
.process-section h2 {
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 20px;
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 48px;
}
.process-step {
    text-align: center;
    padding: 40px 28px;
    background: white;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}
.process-step:hover {
    border-color: rgba(124, 58, 237, 0.4);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}
.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin: 0 auto 24px;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}
.process-step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}
.process-step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-light), var(--primary));
}

/* Selection */
::selection {
    background: rgba(124, 58, 237, 0.2);
    color: var(--primary);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
        gap: 60px;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-cta {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-title {
        font-size: 2.75rem;
    }
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    body {
        overflow-x: hidden;
    }

    .hero {
        overflow: hidden;
    }

    .hero::before,
    .hero::after {
        display: none;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 8px;
        border-bottom: 1px solid var(--border-color);
        box-shadow: var(--shadow-xl);
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links a {
        padding: 14px 20px;
        color: var(--text-secondary);
    }
    .nav-links a:hover,
    .nav-links a.active {
        color: var(--primary);
        background: rgba(124, 58, 237, 0.1);
    }
    .nav-cta {
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
    }
    .hero-title {
        font-size: 2.25rem;
    }
    .hero-mockup {
        display: none;
    }
    .hero-stats {
        gap: 32px;
    }
    .section-title {
        font-size: 2rem;
    }
    .featured-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .footer-brand p {
        margin: 0 auto;
    }
    .demo-iframe-container {
        height: 500px;
    }
    .page-header h1 {
        font-size: 2.25rem;
    }
    .project-hero-new h1 {
        font-size: 2rem;
    }
    .about-content {
        flex-direction: column;
        text-align: center;
        padding: 32px;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }
    .btn-large {
        width: 100%;
    }
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    .solution-item {
        flex-direction: column;
        text-align: center;
    }
    .about-main {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
    .about-avatar {
        font-size: 5rem;
    }
    .process-steps {
        grid-template-columns: 1fr;
    }
    .trust-grid {
        flex-direction: column;
        gap: 16px;
    }
    .trust-item {
        width: 100%;
        justify-content: center;
    }
}

.automation-embed {
    padding: 2rem 0 4rem;
}
.automation-frame {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
}
.automation-frame iframe {
    width: 100%;
    height: 800px;
    border: none;
    display: block;
}
@media (max-width: 768px) {
    .automation-frame iframe {
        height: 600px;
    }
}
