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

:root {
    --cream: #faf8f3;
    --off-white: #f5f2ea;
    --warm-gray: #e8e4db;
    --dark: #2a2a2a;
    --mid-gray: #6b6b6b;
    --accent: #ff6b35;
    --accent-light: #ff8c61;
    --blue: #0066cc;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
    background: var(--cream);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(250, 248, 243, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(42, 42, 42, 0.06);
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--dark);
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: var(--mid-gray);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--dark);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 6%;
    position: relative;
    background: linear-gradient(135deg, var(--cream) 0%, var(--off-white) 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--dark);
    color: var(--cream);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    border-radius: 4px;
    opacity: 0;
    animation: fadeUp 0.6s forwards 0.2s;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
    color: var(--dark);
    opacity: 0;
    animation: fadeUp 0.6s forwards 0.4s;
}

.accent-text {
    color: var(--accent);
}

.hero p {
    font-size: 1.25rem;
    color: var(--mid-gray);
    max-width: 520px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    opacity: 0;
    animation: fadeUp 0.6s forwards 0.6s;
}

.cta-group {
    display: flex;
    gap: 1rem;
    opacity: 0;
    animation: fadeUp 0.6s forwards 0.8s;
}

.btn {
    display: inline-block;
    padding: 1.1rem 2.2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
}

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

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(255, 107, 53, 0.25);
}

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

.btn-secondary:hover {
    background: var(--dark);
    color: var(--cream);
}

.hero-visual {
    position: relative;
    height: 500px;
    opacity: 0;
    animation: fadeUp 0.6s forwards 0.5s;
}

.visual-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    padding: 2rem;
    border: 1px solid rgba(42, 42, 42, 0.08);
}

.visual-card-1 {
    top: 0;
    left: 0;
    width: 280px;
    animation: float 6s ease-in-out infinite;
}

.visual-card-2 {
    top: 100px;
    right: 40px;
    width: 240px;
    animation: float 6s ease-in-out infinite 2s;
}

.visual-card-3 {
    bottom: 40px;
    left: 80px;
    width: 200px;
    animation: float 6s ease-in-out infinite 4s;
}

.visual-stat {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.visual-label {
    font-size: 0.9rem;
    color: var(--mid-gray);
    font-weight: 500;
}

.section {
    padding: 8rem 6%;
    position: relative;
}

.section-header {
    max-width: 700px;
    margin-bottom: 5rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.section-subtitle {
    color: var(--mid-gray);
    font-size: 1.2rem;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(42, 42, 42, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--accent);
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 4px 0 0 4px;
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--warm-gray);
    line-height: 1;
    margin-bottom: 1rem;
}

.service-card:hover .service-number {
    color: var(--accent);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.service-card p {
    color: var(--mid-gray);
    line-height: 1.8;
}

.work-section {
    background: var(--off-white);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.work-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(42, 42, 42, 0.08);
    display: block;
}

.work-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1);
}

.work-card-image {
    height: 240px;
    position: relative;
    overflow: hidden;
    background: var(--off-white);
}

.work-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.work-card-content {
    padding: 2.5rem;
}

.work-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.work-card p {
    color: var(--mid-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.work-link {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.work-card:hover .work-link {
    gap: 1rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(42, 42, 42, 0.08);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    color: var(--mid-gray);
    font-weight: 500;
}

.contact-section {
    background: var(--dark);
    color: var(--cream);
}

.contact-section .section-title,
.contact-section .section-subtitle {
    color: var(--cream);
}

.contact-section .section-subtitle {
    color: var(--warm-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    max-width: 1200px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--cream);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: var(--cream);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.12);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

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

.contact-info p {
    color: var(--warm-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--cream);
}

.contact-item a {
    color: var(--accent);
    text-decoration: none;
}

footer {
    background: var(--dark);
    padding: 3rem 6%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--warm-gray);
    text-align: center;
}

footer p {
    margin-bottom: 0.5rem;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
    from {
        opacity: 0;
        transform: translateY(40px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 1024px) {
    .hero-grid, .about-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .work-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .services-grid, .stats-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 4rem 5%;
    }

    nav {
        padding: 1.5rem 5%;
    }

    .hero {
        padding: 0 5%;
    }
}

