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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #334155;
    background: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
}

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

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

nav a {
    text-decoration: none;
    color: #1e293b;
}

nav a:hover {
    color: #f97316 !important;
}

nav.scrolled {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.nav-logo img {
    width: 200px;
    height: 40px;
    object-fit: contain;
}

.nav-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #f97316 0%, #14b8a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links button {
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    color: #475569;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-links button:hover,
.nav-links button.active {
    color: #14b8a6;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #334155;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid #e2e8f0;
}

.mobile-menu button {
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    color: #475569;
    cursor: pointer;
    text-align: left;
    padding: 0.5rem 0;
}

/* Main Content */
main {
    padding-top: 80px;
    min-height: 100vh;
}

.page {
    display: none;
}

.page.active {
    display: block;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #fed7aa 0%, #fef3c7 25%, #ccfbf1 75%, #99f6e4 100%);
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    mix-blend-mode: multiply;
}

.blob-1 {
    top: 5rem;
    left: 2.5rem;
    width: 24rem;
    height: 24rem;
    background: linear-gradient(135deg, #fed7aa 0%, #fbbf24 100%);
    animation: blob 7s infinite;
}

.blob-2 {
    top: 10rem;
    right: 2.5rem;
    width: 24rem;
    height: 24rem;
    background: linear-gradient(135deg, #99f6e4 0%, #06b6d4 100%);
    animation: blob 7s infinite;
    animation-delay: 2s;
}

.blob-3 {
    bottom: 5rem;
    left: 33%;
    width: 24rem;
    height: 24rem;
    background: linear-gradient(135deg, #67e8f9 0%, #14b8a6 100%);
    animation: blob 7s infinite;
    animation-delay: 4s;
}

@keyframes blob {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0px, 0px) scale(1); }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.hero-logo {
    width: 96px;
    height: 96px;
    margin: 0 auto 2rem;
    object-fit: contain;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #475569;
    margin-bottom: 3rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

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

/* Buttons */
.btn {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 500;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: #475569;
    color: white;
}

.btn-primary:hover {
    background: #1e293b;
}

.btn-secondary {
    background: linear-gradient(135deg, #fb923c 0%, #14b8a6 100%);
    color: white;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #f97316 0%, #0d9488 100%);
}

.btn-full {
    width: 100%;
}

/* Values Section */
.values {
    padding: 5rem 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.value-card {
    text-align: center;
}

.value-icon {
    width: 8rem;
    height: 8rem;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-icon-1 {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    color: #475569;
}

.value-icon-2 {
    background: linear-gradient(135deg, #fed7aa 0%, #fef3c7 100%);
    color: #f97316;
}

.value-icon-3 {
    background: linear-gradient(135deg, #ccfbf1 0%, #99f6e4 100%);
    color: #0d9488;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.value-card p {
    color: #475569;
    line-height: 1.7;
}

/* Page Container */
.page-container {
    padding: 5rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.page-container h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    text-align: center;
    margin-bottom: 2rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #475569;
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
}

/* Content Card */
.content-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    margin-bottom: 3rem;
}

.intro-text {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #475569;
}

.content-card h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1e293b;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.content-card p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #475569;
}

.check-list {
    list-style: none;
    margin: 1.5rem 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    color: #475569;
}

.check-list li::before {
    content: "→";
    color: #14b8a6;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    font-weight: 600;
}

.quote-box {
    background: linear-gradient(135deg, #fed7aa 0%, #ccfbf1 100%);
    border-radius: 1rem;
    padding: 2rem;
    margin-top: 3rem;
}

.quote-box p {
    font-size: 1.125rem;
    font-style: italic;
    color: #475569;
    text-align: center;
    margin: 0;
}

/* Services Card */
.services-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2f1 100%);
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    padding: 3rem;
}

.services-card h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.service-features {
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.feature:nth-child(1) svg { color: #14b8a6; }
.feature:nth-child(2) svg { color: #f97316; }
.feature:nth-child(3) svg { color: #0d9488; }

.feature h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #475569;
    line-height: 1.7;
}

.process-section {
    border-top: 1px solid #cbd5e1;
    padding-top: 2rem;
}

.process-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.process-step {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.step-number {
    font-size: 1.875rem;
    font-weight: 700;
    color: #14b8a6;
    margin-bottom: 0.75rem;
}

.step-number-2 {
    color: #f97316;
}

.process-step h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.875rem;
    color: #475569;
}

.investment-box {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.investment-box h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.investment-box p {
    color: #475569;
    margin-bottom: 1rem;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.contact-form-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.contact-form-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #14b8a6;
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.info-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-item:nth-child(1) svg { color: #14b8a6; }
.contact-item:nth-child(2) svg { color: #f97316; }
.contact-item:nth-child(3) svg { color: #0d9488; }

.contact-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.contact-item a {
    color: #475569;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #14b8a6;
}

.contact-item p {
    color: #475569;
    margin: 0;
}

.cta-card {
    background: linear-gradient(135deg, #475569 0%, #0f766e 100%);
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    color: white;
}

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

.cta-card p {
    color: #f1f5f9;
    margin-bottom: 1rem;
}

.small-text {
    font-size: 0.875rem;
    color: #cbd5e1;
    margin-bottom: 0 !important;
}

/* Footer */
footer {
    background: #1e293b;
    color: white;
    padding: 3rem 0;
}

footer a {
    text-decoration: none;
    color: inherit;
}

footer a:hover {
    color: #f97316;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

.footer-logo span {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-section p {
    color: #cbd5e1;
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-section button {
    display: block;
    background: none;
    border: none;
    color: #cbd5e1;
    font-size: 0.875rem;
    cursor: pointer;
    text-align: left;
    padding: 0.25rem 0;
    transition: color 0.3s ease;
}

.footer-section button:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 0.875rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #334155;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #14b8a6;
}

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

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

    .mobile-menu.active {
        display: flex;
        padding: 20px !important;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .page-container h1 {
        font-size: 2.25rem;
    }

    .content-card {
        padding: 2rem;
    }

    .services-card {
        padding: 2rem;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

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

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