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

:root {
    --primary: #10B981;
    --secondary: #3B82F6;
    --gradient: linear-gradient(135deg, #10B981 0%, #3B82F6 100%);
    --bg: #FFFFFF;
    --text-main: #1F2937;
    --text-muted: #6B7280;
    --card-bg: #F9FAFB;
    --radius: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navbar */
nav {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 100px;
    padding: 12px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.brand {
    font-size: 20px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

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

.btn-nav {
    padding: 10px 24px;
    background: var(--gradient);
    color: white !important;
    border-radius: 100px;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
}

/* Hero */
.hero {
    padding: 180px 0 100px;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 72px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero-content h1 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 16px;
}

.btn {
    padding: 18px 36px;
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-fill {
    background: var(--gradient);
    color: white;
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
}

.btn-fill:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(16, 185, 129, 0.3);
}

.hero-visual img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 40px 80px rgba(0,0,0,0.1);
}

/* Sections */
.section {
    padding: 100px 0;
}

.label {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary);
    border-radius: 100px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

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

.card {
    padding: 40px;
    background: var(--card-bg);
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
}

.card:hover {
    background: white;
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
    transform: translateY(-10px);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

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

.card p {
    color: var(--text-muted);
}

/* Service Cards */
.service-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--card-bg);
}

.service-visual {
    height: 250px;
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-visual img {
    transform: scale(1.1);
}

.service-body {
    padding: 30px;
}

.service-body h3 {
    margin-bottom: 10px;
}

.price {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* Contact */
.contact-card {
    background: var(--gradient);
    border-radius: 40px;
    padding: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    color: white;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: var(--radius);
}

.input-group {
    margin-bottom: 20px;
}

.input-group input, .input-group textarea {
    width: 100%;
    padding: 16px;
    background: #F3F4F6;
    border: 2px solid transparent;
    border-radius: 16px;
    font-family: inherit;
    transition: var(--transition);
}

.input-group input:focus {
    background: white;
    border-color: var(--primary);
    outline: none;
}

/* Footer */
footer {
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 60px;
    margin-bottom: 40px;
}

.footer-brand .brand {
    font-size: 24px;
    margin-bottom: 20px;
    display: block;
}

.footer-links h4 {
    margin-bottom: 20px;
    font-weight: 700;
}

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

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

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    transition: var(--transition);
}

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

@media (max-width: 1024px) {
    .hero-grid, .grid-3, .contact-card {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 56px;
    }
}
