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

body {
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.6;
    color: #44403c;
    background-color: #fafaf9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e7e5e4;
    z-index: 50;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.logo {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1c1917;
    font-family: Georgia, serif;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #44403c;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #1c1917;
}

.btn-primary {
    background: #1c1917;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    background: #44403c;
}

.btn-secondary {
    background: transparent;
    color: #44403c;
    padding: 0.5rem 1rem;
    border: 1px solid #d6d3d1;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: #f5f5f4;
}

/* Mobile menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #44403c;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    background: white;
    border-top: 1px solid #e7e5e4;
    padding: 1rem;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 0.5rem 0;
    text-decoration: none;
    color: #44403c;
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    text-align: center;
    background: linear-gradient(135deg, #fafaf9 0%, #f5f5f4 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 300;
    color: #1c1917;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
}

.hero h1 span {
    font-weight: 500;
}

.hero p {
    font-size: 1.25rem;
    color: #57534e;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-box {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1c1917;
    margin-bottom: 1rem;
}

.cta-box p {
    color: #57534e;
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 500;
    color: #1c1917;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #57534e;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.portfolio-item {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #d6d3d1 0%, #a8a29e 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #57534e;
    font-weight: 500;
    transition: transform 0.3s;
}

.portfolio-item:hover {
    transform: scale(1.05);
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.pricing-card.featured {
    background: #1c1917;
    color: white;
    transform: scale(1.05);
}

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

.pricing-card .price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-card li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.pricing-card li:before {
    content: "";
    color: #22c55e;
    font-weight: bold;
    margin-right: 0.5rem;
}

.popular-badge {
    background: white;
    color: #1c1917;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    position: absolute;
    top: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #d6d3d1 0%, #a8a29e 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #57534e;
    font-weight: 500;
}

.features-list {
    list-style: none;
    margin-top: 2rem;
}

.features-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
}

.features-list li:before {
    content: "�";
    color: #57534e;
    margin-right: 0.75rem;
}

/* Contact */
.contact {
    background: #1c1917;
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form {
    background: white;
    color: #1c1917;
    padding: 2rem;
    border-radius: 10px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #44403c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d6d3d1;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #78716c;
    box-shadow: 0 0 0 2px rgba(120, 113, 108, 0.2);
}

.form-group input.error {
    border-color: #ef4444;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #d6d3d1;
}

.contact-item:before {
    content: "=�";
    margin-right: 1rem;
}

.contact-item:nth-child(2):before {
    content: "=�";
}

.contact-item:nth-child(3):before {
    content: "=�";
}

.commitment-box {
    background: #292524;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.commitment-box h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.commitment-box ul {
    list-style: none;
}

.commitment-box li {
    padding: 0.25rem 0;
    color: #d6d3d1;
}

.commitment-box li:before {
    content: '"';
    margin-right: 0.5rem;
}

/* Footer */
footer {
    background: #292524;
    color: #d6d3d1;
    padding: 3rem 0;
    text-align: center;
}

footer h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1.5rem 0;
}

.footer-links a {
    color: #d6d3d1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #44403c;
    font-size: 0.875rem;
}

/* Notification */
.notification {
    position: fixed;
    top: 5rem;
    right: 1rem;
    padding: 1rem;
    border-radius: 6px;
    color: white;
    font-weight: 500;
    z-index: 100;
    max-width: 300px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.notification.success {
    background: #22c55e;
}

.notification.error {
    background: #ef4444;
}

.notification.show {
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

/* 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);
}

.hidden {
    display: none;
}