/* automate.css - Dedicated B2B Sales Landing Page */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800;900&family=Outfit:wght@400;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #0f172a;
    color: #f8fafc;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Gradients */
.bg-gradient {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 30%, rgba(56, 189, 248, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.15) 0%, transparent 40%);
    z-index: -1;
    animation: slowPulse 15s ease-in-out infinite alternate;
}

@keyframes slowPulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.1) translate(-2%, -2%); }
}

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

/* Header */
header {
    padding: 24px 0;
    position: relative;
    z-index: 10;
}
.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 900;
}
.logo-area img {
    height: 40px;
    border-radius: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--platform-accent, #38bdf8), var(--platform-primary, #6366f1));
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(56, 189, 248, 0.3);
    border: none;
    cursor: pointer;
    display: inline-block;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(56, 189, 248, 0.4);
}

/* Hero Section */
.hero {
    padding: 100px 0 60px 0;
    text-align: center;
    position: relative;
}
.hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero p {
    font-size: 20px;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.mockup-container {
    margin-top: 60px;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.mockup-container img {
    width: 100%;
    display: block;
}

/* Glassmorphism Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 100px 0;
}
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}
.glass-card ion-icon {
    font-size: 48px;
    color: var(--platform-accent, #38bdf8);
    margin-bottom: 20px;
}
.glass-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    margin-bottom: 12px;
}
.glass-card p {
    color: #94a3b8;
    font-size: 15px;
}

/* Done For You Section */
.dfy-section {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(99, 102, 241, 0.1));
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    margin: 100px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.dfy-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 40px;
    margin-bottom: 20px;
}
.dfy-section p {
    color: #cbd5e1;
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0;
    text-align: center;
    color: #64748b;
}

@media (max-width: 768px) {
    .hero h1 { font-size: 40px; }
    .hero p { font-size: 16px; }
    .dfy-section { padding: 40px 20px; }
    .header-flex .btn-primary { display: none; }
}
