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

:root {
    --bg: #ffffff;
    --card: #f8f8f8;
    --text: #111111;
    --muted: #6b7280;
    --accent: #22c55e;
}

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

body {
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

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

header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

header p.tagline {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--muted);
}

.hero p {
    font-size: 1.3rem;
    font-weight: 500;
    margin: 3rem 0 2rem;
}

.hero-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap; /* responsive: stack on small screens */
}

.hero-image-wrapper {
    flex: 1 1 300px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    transition: transform 0.3s ease;
    display: block;
}

/* Slanted / angled effect */
.hero-left {
    transform: rotate(-3deg) scale(1.05);
}

.hero-right {
    transform: rotate(3deg) scale(1.05);
}

/* Hover effect for subtle interaction */
.hero-image:hover {
    transform: rotate(0deg) scale(1.07);
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .hero-images {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-left,
    .hero-right {
        transform: rotate(0deg) scale(1);
    }

    .hero-image:hover {
        transform: scale(1.02);
    }
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.step-card {
    background: var(--card);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.step-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.step-card h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 1.1rem;
    color: var(--muted);
}

.cta {
    text-align: center;
    margin: 3rem 0;
}

.cta a {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1.3rem;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

footer {
    margin-top: 4rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--muted);
}

.step-card svg {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}
