:root {
    --primary: hsl(265, 80%, 60%);
    --primary-light: hsl(265, 80%, 95%);
    --dark: hsl(240, 40%, 15%);
    --dark-muted: hsl(240, 20%, 30%);
    --bg: hsl(0, 0%, 100%);
    --bg-alt: hsl(240, 20%, 98%);
    --text: hsl(240, 40%, 10%);
    --text-muted: hsl(240, 10%, 45%);
    --white: #ffffff;
    --border: hsl(240, 10%, 90%);

    --radius-lg: 48px;
    --radius-md: 24px;
    --radius-sm: 12px;

    --container-width: 1280px;
    --section-spacing: 120px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate {
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

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

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

h1,
h2,
h3,
.logo-text {
    font-family: 'Outfit', sans-serif;
    color: var(--dark);
    font-weight: 600;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    background-color: var(--bg-alt);
    padding: 24px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
}

.logo-text {
    font-size: 20px;
    font-weight: 600;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--dark);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: transform 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
}

.btn:active {
    transform: scale(0.95);
}

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

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

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

/* Sections */
.section {
    padding: var(--section-spacing) 0;
}

/* Hero Section */
.hero {
    padding-top: 20px;
}

.hero-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 80px 40px 0;
    box-shadow: 0 40px 80px -20px hsla(240, 40%, 15%, 0.05);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: scaleIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-header {
    max-width: 700px;
    margin-bottom: 60px;
}

.plus-icon {
    display: block;
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--dark);
}

.hero-title {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.hero-visual {
    width: 100%;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
    margin-top: 40px;
    line-height: 0;
}

.hero-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Intro Section */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: flex-start;
}

.section-title {
    font-size: 48px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.intro-text {
    font-size: 28px;
    color: var(--text);
    font-weight: 500;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 24px;
}

.feature-card {
    padding: 40px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px -12px hsla(240, 40%, 15%, 0.1);
}

.feature-main {
    background: linear-gradient(135deg, hsl(230, 40%, 85%), hsl(230, 40%, 95%));
    grid-column: span 1;
    display: flex;
    flex-direction: row;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.feature-main .feature-content {
    flex: 1;
}

.feature-main .feature-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.flower-icon {
    font-size: 150px;
    opacity: 0.8;
}

.feature-dark {
    background-color: var(--dark);
    color: var(--white);
}

.feature-dark .feature-title {
    color: var(--white);
}

.feature-dark .feature-description {
    color: hsla(0, 0%, 100%, 0.7);
}

.feature-title {
    font-size: 28px;
    margin-bottom: 16px;
}

.feature-description {
    font-size: 16px;
    color: var(--text-muted);
}

/* Partners Section */
.partners {
    text-align: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin: 40px 0;
}

.partners-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    opacity: 0.6;
}

.partner-item {
    font-weight: 700;
    font-size: 18px;
}

/* Use Cases Section */
.use-cases .mobile-stack {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

.label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.use-cases-text {
    font-size: 18px;
    color: var(--text-muted);
    margin-top: 24px;
}

.business-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    box-shadow: 0 40px 80px -20px hsla(240, 40%, 15%, 0.05);
    transition: transform 0.4s ease;
}

.business-card:hover {
    transform: scale(1.02);
}

.business-title {
    font-size: 40px;
    margin-bottom: 24px;
}

.business-description {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.learn-more {
    text-decoration: none;
    font-weight: 600;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.business-visual img {
    width: 100%;
    height: auto;
}

/* Contact Form Section */
.contact-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 80px 60px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 40px 80px -20px hsla(240, 40%, 15%, 0.05);
}

.contact-header {
    text-align: center;
    margin-bottom: 48px;
}

.contact-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-top: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 16px;
    transition: border-color 0.3s ease, outline 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--dark);
}

.btn-block {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    margin-top: 12px;
}

/* Responsiveness for contact form */
@media (max-width: 768px) {
    .contact-card {
        padding: 40px 24px;
    }
}

/* Footer */
.footer {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid var(--border);
}

/* Responsiveness */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .feature-main {
        grid-column: span 2;
    }

    .hero-title {
        font-size: 48px;
    }
}

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

    .intro-grid,
    .use-cases .mobile-stack,
    .business-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }

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

    .feature-main {
        grid-column: span 1;
        flex-direction: column;
    }

    .business-card {
        padding: 32px;
    }
}