:root {
    --primary-purple: #4B0FA3;
    --dark-purple: #2D006B;
    --accent-yellow: #FFC400;
    --accent-yellow-hover: #e6b000;
    --light-bg: #F8F8FA;
    --white: #FFFFFF;
    --text-main: #1E1E1E;
    --text-secondary: #555555;
    --text-muted: #888888;
    --border-color: #EAEAEA;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-pill: 100px;
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 40px rgba(45, 0, 107, 0.08);
    --shadow-lg: 0 20px 60px rgba(45, 0, 107, 0.12);
    --shadow-hover: 0 25px 70px rgba(45, 0, 107, 0.18);
    --font-heading: 'Montserrat', 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--dark-purple);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

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

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.text-purple { color: var(--primary-purple); }
.text-yellow { color: var(--accent-yellow); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.text-secondary { color: var(--text-secondary); }
.bg-light { background-color: var(--light-bg); }
.bg-purple { background: linear-gradient(135deg, #2D006B 0%, #4B0FA3 100%); color: var(--white); }
.bg-purple h2, .bg-purple h3, .bg-purple p { color: var(--white); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
    gap: 10px;
    text-align: center;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: var(--primary-purple);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--dark-purple);
}

.btn-secondary {
    background-color: var(--accent-yellow);
    color: var(--text-main);
}

.btn-secondary:hover {
    background-color: var(--accent-yellow-hover);
}

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

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-purple);
}

.btn-sm {
    padding: 12px 24px;
    font-size: 14px;
}

/* Pill Badge */
.pill-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    background: var(--primary-purple-light);
    color: var(--primary-purple);
    border-color: rgba(75, 15, 163, 0.15);
}

/* Hero */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #2D006B 0%, #4B0FA3 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 196, 0, 0.1);
    border-radius: 50%;
    filter: blur(80px);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 52px;
    color: var(--white);
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    margin: 0 auto 32px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 17px;
    color: var(--text-secondary);
}

/* Service Cards */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary-purple-light);
    color: var(--primary-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 24px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

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

.service-tag {
    display: inline-block;
    margin-top: 16px;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--light-bg);
    color: var(--text-secondary);
}

/* Projects */
.category-section {
    margin-bottom: 80px;
}

.category-title {
    font-size: 28px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.category-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.project-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.project-image {
    height: 200px;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 48px;
    background: linear-gradient(135deg, #f0f0f5 0%, #e8e8f0 100%);
}

.project-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
}

.badge-static { background: #4B0FA3; }
.badge-dynamic { background: #0A7B3E; }
.badge-ecommerce { background: #D97706; }
.badge-featured { background: var(--accent-yellow); color: var(--text-main); }

.project-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

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

.project-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary-purple);
    font-size: 14px;
}

.project-link:hover {
    color: var(--dark-purple);
    gap: 12px;
}

.project-link i {
    font-size: 12px;
}

/* Featured */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.featured-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.featured-card .project-image {
    height: 100%;
    min-height: 280px;
}

.featured-card .project-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-card .project-content h3 {
    font-size: 26px;
}

/* Trust Signals */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.trust-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-card h3 {
    font-size: 36px;
    color: var(--accent-yellow);
    margin-bottom: 8px;
}

.trust-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 100px 0;
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 32px;
}

/* Footer */
.footer {
    background: var(--dark-purple);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 12px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-links h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--accent-yellow);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Mobile */
@media (max-width: 992px) {
    .service-grid,
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-card {
        grid-template-columns: 1fr;
    }
    
    .featured-card .project-image {
        min-height: 200px;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero h1 {
        font-size: 38px;
    }
    
    .section-header h2,
    .cta-section h2 {
        font-size: 32px;
    }
    
}

@media (max-width: 576px) {
    .service-grid,
    .projects-grid,
    .trust-grid,
    .pricing-grid,
    .services-list {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 30px;
    }
    
    .hero {
        padding: 140px 0 80px;
    }
    
    .section-padding {
        padding: 70px 0;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .pricing-card .price {
        font-size: 32px;
    }
    
    .cta-options {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-option {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.pricing-card.popular {
    border: 2px solid var(--primary-purple);
    box-shadow: var(--shadow-md);
}

.pricing-card.popular::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-purple);
    color: var(--white);
    padding: 6px 18px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary-purple-light);
    color: var(--primary-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 24px;
}

.pricing-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.pricing-card .price {
    font-size: 42px;
    font-weight: 900;
    color: var(--primary-purple);
    margin-bottom: 8px;
}

.pricing-card .price span {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-muted);
}

.pricing-card .description {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 28px;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li i {
    color: var(--primary-purple);
    font-size: 14px;
}

/* Benefits List */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    max-width: 800px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    font-size: 15px;
    color: var(--text-secondary);
}

.benefit-item i {
    color: var(--primary-purple);
    font-size: 18px;
    flex-shrink: 0;
}

/* Services List */
.services-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.service-item:hover {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-sm);
}

.service-item i {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary-purple-light);
    color: var(--primary-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.service-item span {
    font-weight: 600;
    color: var(--text-main);
}

/* CTA Options */
.cta-options {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.cta-option {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: var(--white);
    color: var(--primary-purple);
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cta-option:hover {
    background: var(--accent-yellow);
    color: var(--text-main);
    transform: translateY(-3px);
}

.cta-option .number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
}

.cta-option:hover .number {
    background: var(--text-main);
}

.cta-option .number i {
    color: white;
}

/* Empty State */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px dashed var(--border-color);
}

.empty-state i {
    font-size: 48px;
    color: var(--border-color);
    margin-bottom: 20px;
}

.empty-state h3 {
    color: var(--text-secondary);
    margin-bottom: 8px;
}
