@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@500;600;700&display=swap');

:root {
    --pd-primary: #4f46e5;
    --pd-primary-dark: #4338ca;
    --pd-secondary: #0f172a;
    --pd-accent: #8b5cf6;
    --pd-text-main: #1e293b;
    --pd-text-muted: #64748b;
    --pd-bg-soft: #f8fafc;
    --pd-white: #ffffff;
    --pd-glass: rgba(255, 255, 255, 0.8);
    --pd-shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --pd-shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --pd-shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--pd-text-main);
    background-color: var(--pd-bg-soft);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--pd-secondary);
}

/* Navbar */
.pd-navbar {
    background: var(--pd-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

.pd-nav-link {
    font-weight: 500;
    color: var(--pd-text-main) !important;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    transition: all 0.2s ease;
}

.pd-nav-link:hover {
    background: rgba(79, 70, 229, 0.05);
    color: var(--pd-primary) !important;
}

/* Hero Section */
.pd-hero {
    padding: 120px 0 80px;
    background: radial-gradient(circle at top right, rgba(79, 70, 229, 0.05) 0%, transparent 50%),
                radial-gradient(circle at bottom left, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
}

.pd-hero-title {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.pd-hero-subtitle {
    font-size: 1.25rem;
    color: var(--pd-text-muted);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

/* Static Showcase */
.pd-showcase {
    background: var(--pd-white);
    padding: 2rem;
    border-radius: 32px;
    box-shadow: var(--pd-shadow-lg);
    border: 1px solid rgba(0,0,0,0.05);
    margin: -60px auto 80px;
    max-width: 1000px;
    position: relative;
    z-index: 10;
}

.pd-showcase-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Section Styling */
.pd-section {
    padding: 100px 0;
}

.pd-section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.pd-section-subtitle {
    color: var(--pd-text-muted);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

/* Cards */
.pd-card {
    background: var(--pd-white);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid #f1f5f9;
    box-shadow: var(--pd-shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.pd-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--pd-shadow-lg);
    border-color: rgba(79, 70, 229, 0.2);
}

.pd-icon-box {
    width: 64px;
    height: 64px;
    background: rgba(79, 70, 229, 0.1);
    color: var(--pd-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

/* Process Steps */
.pd-process-step {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 2rem;
}

.pd-process-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--pd-primary);
    color: var(--pd-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

/* Testimonials */
.pd-testimonial {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 24px;
    border-left: 4px solid var(--pd-primary);
    box-shadow: var(--pd-shadow-md);
}

/* Contact Form */
.pd-form-control {
    background: #f1f5f9;
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 0.875rem 1.25rem;
    transition: all 0.2s ease;
}

.pd-form-control:focus {
    background: var(--pd-white);
    border-color: var(--pd-primary);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
    outline: none;
}

/* Buttons */
.pd-btn {
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pd-btn-primary {
    background: var(--pd-primary);
    color: var(--pd-white);
    border: none;
    box-shadow: 0 4px 14px 0 rgba(79, 70, 229, 0.39);
}

.pd-btn-primary:hover {
    background: var(--pd-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.23);
}

.pd-btn-outline {
    border: 2px solid var(--pd-secondary);
    color: var(--pd-secondary);
    background: transparent;
}

.pd-btn-outline:hover {
    background: var(--pd-secondary);
    color: var(--pd-white);
}

/* Footer */
.pd-footer {
    padding: 80px 0 40px;
    background: var(--pd-secondary);
    color: rgba(255,255,255,0.7);
}

.pd-footer h5 {
    color: var(--pd-white);
    margin-bottom: 1.5rem;
}
