/* ========================================= */
/* AUTOMAILER B2B PROFESSIONAL THEME
/* ========================================= */
:root {
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --bg-white: #ffffff;
    --bg-offwhite: #f3f4f6;
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --secondary-gradient: linear-gradient(135deg, #10b981, #2563eb);
    --border-light: #e5e7eb;
}

body,
html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Utility */
.gradient-text {
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-light {
    background-color: var(--bg-offwhite);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 16px 32px;
    font-weight: 600;
    color: white;
    background: var(--primary);
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: var(--primary-hover);
}

.btn-outline {
    padding: 10px 20px;
    font-weight: 500;
    color: var(--text-dark);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-outline:hover {
    border-color: var(--text-dark);
}

.price-note {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 10px;
    font-weight: 500;
}

/* Navbar */
.navbar {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-light);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
}

.logo-icon {
    width: 24px;
    height: 24px;
    background: var(--secondary-gradient);
    border-radius: 4px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    padding: 80px 0;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.tag {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #10b981;
    margin-bottom: 15px;
    display: inline-block;
    background: #d1fae5;
    padding: 4px 12px;
    border-radius: 20px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    letter-spacing: -1px;
    margin: 0 0 20px 0;
    font-weight: 800;
    color: #111827;
}

.hero-text .subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* Dashboard Mockup */
.hero-dashboard {
    flex: 1;
}

.dashboard-mockup {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.dash-header {
    background: #f9fafb;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-light);
}

.dash-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dash-body {
    padding: 30px;
}

.stat-row {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.stat-box {
    flex: 1;
    padding: 15px;
    background: #fdfdfd;
    border: 1px dashed var(--border-light);
    border-radius: 8px;
    text-align: center;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
}

.chat-preview {
    background: #f9fafb;
    padding: 20px;
    border-radius: 8px;
}

.chat-title {
    margin: 0 0 15px 0;
    font-size: 0.8rem;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
}

.msg {
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    max-width: 90%;
}

.msg.client {
    background: white;
    border: 1px solid var(--border-light);
    color: var(--text-dark);
    margin-left: auto;
    border-bottom-right-radius: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.msg.bot {
    background: var(--secondary-gradient);
    color: white;
    border-bottom-left-radius: 0;
    margin-right: auto;
}

.msg.bot-status {
    background: #d1fae5;
    color: #065f46;
    border: none;
    font-size: 0.8rem;
    font-weight: 500;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    border-radius: 4px;
    padding: 6px;
}

/* Benefits */
.benefits {
    padding: 80px 0;
    border-top: 1px solid var(--border-light);
}

.section-heading {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.section-heading h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-heading p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.card {
    background: white;
    padding: 40px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

/* Footer */
.footer {
    padding: 50px 0;
    background: #111827;
    color: white;
    text-align: center;
}

.footer-top {
    margin-bottom: 30px;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.footer-tagline {
    color: #9ca3af;
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    color: #6b7280;
    font-size: 0.85rem;
}

/* Mobile Adaptations */
@media (max-width: 900px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .nav-links a:not(.btn-outline) {
        display: none;
    }

    .msg {
        max-width: 100%;
    }
}