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

:root {
    --ivory: #FFFFF0;
    --cream: #FAF9F6;
    --tropical-green: #10b981;
    --lime: #84cc16;
    --yellow: #fbbf24;
    --dark: #1a1a1a;
    --muted: #666666;
    --border: rgba(0, 0, 0, 0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #e8f9f4 0%, #fef9e8 100%);
    background-attachment: fixed;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* Fade-in animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out forwards;
}

.slide-left {
    opacity: 0;
    transform: translateX(30px);
    animation: slideLeft 0.8s ease-out forwards;
}

.slide-right {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideRight 0.8s ease-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Stagger animations */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(ellipse at 20% 20%, rgba(16, 185, 129, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 80%, rgba(251, 191, 36, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 60% 40%, rgba(132, 204, 22, 0.08) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.nav {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(32px) saturate(180%);
    -webkit-backdrop-filter: blur(32px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow:
        0 1px 0 0 rgba(255, 255, 255, 0.6),
        0 4px 16px -2px rgba(16, 185, 129, 0.04),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: -0.03em;
}

.logo-full {
    background: linear-gradient(135deg, var(--tropical-green), var(--lime), var(--yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: absolute;
    right: 2rem;
}

.btn-nav {
    padding: 0.625rem 1.25rem;
    background: var(--dark);
    color: var(--ivory);
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid var(--dark);
}

.btn-nav:hover {
    background: transparent;
    color: var(--dark);
}

main {
    position: relative;
    z-index: 1;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 4rem;
    margin-top: -2rem;
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 600px;
    text-align: left;
}

.hero-title {
    font-size: clamp(2.75rem, 6vw, 4.25rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.04em;
    margin-bottom: 1.75rem;
    color: var(--dark);
    max-width: 560px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--tropical-green), var(--lime), var(--yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(1.0625rem, 2vw, 1.1875rem);
    color: var(--muted);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 400;
    max-width: 520px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: linear-gradient(135deg, var(--tropical-green), var(--lime));
    color: white;
    padding: 1.125rem 2.25rem;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.0625rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.2);
    letter-spacing: -0.01em;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(16, 185, 129, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary svg {
    transition: transform 0.2s ease;
}

.btn-primary:hover svg {
    transform: translateX(2px);
}

.hero-showcase {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    z-index: 10;
}

.showcase-label {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--dark);
    background: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.1);
    transition: all 0.3s ease;
}

.showcase-label:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
}

.showcase-label svg {
    width: 8px;
    height: 8px;
    color: var(--tropical-green);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(0.95);
    }
}

.showcase-card {
    position: relative;
    width: 100%;
    max-width: 480px;
    animation: float 6s ease-in-out infinite;
    transition: transform 0.3s ease;
    z-index: 10;
}

.showcase-card:hover {
    transform: translateY(-10px);
    animation-play-state: paused;
}

.showcase-image {
    position: relative;
    padding: 1.75rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 28px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid transparent;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)),
        linear-gradient(135deg, var(--tropical-green), var(--lime), var(--yellow));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow:
        0 20px 60px rgba(16, 185, 129, 0.12),
        0 10px 30px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    z-index: 10;
}

.showcase-card:hover .showcase-image {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)),
        linear-gradient(135deg, var(--tropical-green), var(--lime), var(--yellow));
    box-shadow:
        0 30px 80px rgba(16, 185, 129, 0.18),
        0 15px 40px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.showcase-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
    z-index: 10;
    position: relative;
}

.showcase-card:hover .showcase-image img {
    transform: scale(1.02);
}

.showcase-info {
    margin-top: 1.25rem;
    text-align: center;
    padding: 0 1rem;
}

.showcase-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.showcase-info p {
    font-size: 0.9375rem;
    color: var(--muted);
    line-height: 1.5;
}

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

.contact {
    padding: 6rem 2rem 8rem;
    background: transparent;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.contact-subtitle {
    text-align: center;
    color: var(--muted);
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--dark);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--tropical-green);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--muted);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    width: 100%;
}

.contact-info {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s;
}

.contact-link:hover {
    color: var(--tropical-green);
}

.footer {
    background: var(--cream);
    border-top: 1px solid var(--border);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 3rem;
    gap: 3rem;
}

.footer-brand {
    flex: 1;
}

.footer-brand .logo {
    margin-bottom: 0.75rem;
}

.footer-brand p {
    color: var(--muted);
    font-size: 0.9375rem;
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-section h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-section a {
    display: block;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: var(--tropical-green);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    color: var(--muted);
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .nav-content {
        padding: 1rem 1.5rem;
    }

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

    .footer-main {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

    .hero {
        padding: 5rem 1.5rem 3rem;
    }

    .contact {
        padding: 4rem 1.5rem 6rem;
    }
}

@media (max-width: 768px) {
    .nav-content {
        justify-content: space-between;
    }

    .nav-links {
        position: static;
    }

    .hero {
        margin-top: 0;
        padding: 5rem 2rem 3rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-title {
        max-width: 100%;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .showcase-card {
        max-width: 420px;
    }

    .showcase-image {
        padding: 1.5rem;
    }

    .showcase-info h3 {
        font-size: 1.125rem;
    }

    .showcase-info p {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .logo-full {
        font-size: 1rem;
    }
}
