:root {
    /* Brand Colors */
    --bg-primary: #f8f9fa;
    --brand-dark: #2c344f;
    --cta-color: #Cb1c34;

    --text-primary: var(--brand-dark);
    --text-secondary: rgba(44, 52, 79, 0.8);

    /* Light Glassmorphism Variables */
    --glass-bg: #fefefe;
    --glass-border: rgba(44, 52, 79, 0.1);
    --glass-shadow: 0 10px 40px rgba(44, 52, 79, 0.08);
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    background-image: radial-gradient(circle at top right, #ffffff 0%, #edf0f5 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    line-height: 1.6;
}

.page-wrapper {
    width: 100%;
    max-width: 900px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.logo {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--brand-dark);
}

.main-content {
    width: 100%;
}

.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 0;
    /* No padding for seamless iframe */
    box-shadow: var(--glass-shadow);
    overflow: hidden;
}

.zapier-embed-container {
    width: 100%;
    height: 1000px;
}

footer {
    margin-top: 3rem;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    width: 100%;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Animations */
.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

@media (max-width: 600px) {
    h1 {
        font-size: 1.8rem;
    }

    .logo {
        max-width: 180px;
    }
}