/* Paragraph Labs & Technology - Modern & Simple Theme */
:root {
    --primary: #6366f1; /* Indigo 500 */
    --primary-dark: #4f46e5;
    --secondary: #0ea5e9; /* Sky 500 */
    --accent: #8b5cf6; /* Violet 500 */
    --bg-light: #ffffff;
    --bg-subtle: rgba(241, 245, 249, 0.5);
    --bg-dark: #0f172a;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --text-light: #f8fafc;
    --border: #e2e8f0;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.2);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 50%, #f1f5f9 100%);
    background-attachment: fixed;
    line-height: 1.6;
    overflow-x: hidden;
}

.bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, rgba(99, 102, 241, 0) 70%);
    border-radius: 50%;
    filter: blur(80px);
}

.blob-1 {
    top: -200px;
    right: -100px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, rgba(14, 165, 233, 0) 70%);
}

.blob-2 {
    bottom: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, rgba(139, 92, 246, 0) 70%);
}

.font-outfit {
    font-family: 'Outfit', sans-serif;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.text-gradient {
    background: none;
    -webkit-text-fill-color: initial;
    background-clip: initial;
    display: inline;
}

.text-gradient .char {
    display: inline-block;
    /* The Gradient */
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    background-attachment: fixed;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* Fallback for visibility */
    color: var(--primary);
    
    font-weight: 800;
}

/* Navbar */
.transition-navbar {
    transition: all 0.3s ease;
    padding: 1.5rem 0;
}

.transition-navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    padding: 0.75rem 0;
    box-shadow: 0 1px 0 var(--border);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-main) !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--primary) !important;
}

.btn-contact-nav {
    background: var(--bg-dark);
    color: white !important;
    border-radius: 99px;
    padding: 0.6rem 1.5rem !important;
}

/* Hero Section */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero-badge {
    background: var(--bg-dark);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 99px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.hero-title {
    perspective: 1000px;
}

.hero-title .char {
    display: inline-block;
    will-change: transform, opacity;
}

.hero-tagline {
    opacity: 1; /* GSAP will handle the from state */
}

/* Solutions & Cards */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.card-simple {
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.card-simple:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: #f1f5f9;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.icon-wrapper-small {
    width: 44px;
    height: 44px;
    background: var(--bg-subtle);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.1rem;
}

.card-simple:hover .icon-wrapper {
    background: var(--primary);
    color: white;
}

/* SAKU Section Styles */
.mockup-container {
    perspective: 1000px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mockup-container:hover {
    transform: translateY(-10px) rotateX(2deg) rotateY(-2deg);
}

.mockup-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.py-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

/* Product Section */
.product-card {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    background: var(--bg-dark);
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: all 0.5s ease;
}

.product-card:hover img {
    transform: scale(1.05);
    opacity: 0.4;
}

.product-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(15, 23, 42, 0.9));
    color: white;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.product-card:hover .product-info {
    transform: translateY(0);
    opacity: 1;
}

/* Contact Section */
.contact-container {
    background: var(--bg-dark);
    border-radius: 32px;
    padding: 4rem;
    color: white;
}

.form-control-modern {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    color: white;
    transition: all 0.3s ease;
}

.form-control-modern::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-control-modern:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.2);
    color: white;
}

.btn-modern {
    padding: 1rem 2.5rem;
    border-radius: 99px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.py-100 {
    padding: 100px 0;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

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

/* Responsive */
@media (max-width: 768px) {
    .section-title { font-size: 2rem; }
    .contact-container { padding: 2rem; }
}
