@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;700&family=Nunito:wght@400;600;700&display=swap');

:root {
    --she-primary: #334155;
    --she-secondary: #1e293b;
    --she-accent: #22d3ee;
    --she-background: #f8fafc;
    --she-text: #0f172a;
    --she-muted: #cbd5e1;
    --she-border-radius: 8px;
    --she-transition-speed: 0.3s;
    --she-spacing-lg: 96px;
    --she-spacing-md: 64px;
    --she-spacing-sm: 48px;
}

/* Base Reset & Global Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: var(--she-text);
    background-color: var(--she-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background-color: var(--she-accent);
    color: var(--she-secondary);
}

a {
    color: var(--she-primary);
    text-decoration: none;
    transition: color var(--she-transition-speed) ease;
}

a:hover {
    color: var(--she-accent);
}

/* Typography Scale */
h1, h2, h3, h4, h5, h6 {
    font-family: 'DM Sans', sans-serif;
    color: var(--she-secondary);
    line-height: 1.2;
    margin-bottom: 0.5em;
}

h1 {
    font-size: 2.8em;
    font-weight: 700;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 2.2em;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.8em;
    font-weight: 700;
}

h4 {
    font-size: 1.4em;
    font-weight: 600;
}

h5 {
    font-size: 1.2em;
    font-weight: 600;
}

h6 {
    font-size: 1em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--she-primary);
}

p {
    margin-bottom: 1em;
}

/* Utility Classes */
.bl-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.bl-grid {
    display: grid;
    gap: 30px;
}

.bl-flex {
    display: flex;
    align-items: center;
    gap: 20px;
}

.bl-text-center {
    text-align: center;
}

.bl-text-primary {
    color: var(--she-primary);
}

.bl-text-accent {
    color: var(--she-accent);
}

.bl-section {
    padding: var(--she-spacing-lg) 0;
    position: relative;
}

.bl-section:nth-of-type(even) {
    background-color: #f0f4f8;
}

.bl-section-separator {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--she-muted), transparent);
    margin: 0 auto;
}

/* Buttons */
.bl-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--she-border-radius);
    font-weight: 700;
    font-size: 1em;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--she-transition-speed) ease;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bl-button-primary {
    background-color: var(--she-primary);
    color: #fff;
}

.bl-button-primary:hover {
    background-color: var(--she-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.bl-button-secondary {
    background-color: var(--she-accent);
    color: var(--she-secondary);
}

.bl-button-secondary:hover {
    background-color: #1aadc9;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.bl-button-outline {
    background-color: transparent;
    border-color: var(--she-primary);
    color: var(--she-primary);
}

.bl-button-outline:hover {
    background-color: var(--she-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Header & Navigation */
.bl-header {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.bl-logo {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.8em;
    font-weight: 700;
    color: var(--she-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.bl-logo img {
    height: 40px;
    margin-right: 10px;
}

.bl-nav-menu {
    display: flex;
    list-style: none;
}

.bl-nav-menu li {
    margin-left: 30px;
}

.bl-nav-menu a {
    color: var(--she-primary);
    font-weight: 600;
    padding: 5px 0;
    position: relative;
}

.bl-nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--she-accent);
    transition: width var(--she-transition-speed) ease;
}

.bl-nav-menu a:hover::after, .bl-nav-menu a.active::after {
    width: 100%;
}

.bl-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

.bl-hamburger span {
    height: 3px;
    width: 25px;
    background-color: var(--she-primary);
    margin-bottom: 5px;
    border-radius: 2px;
    transition: all var(--she-transition-speed) ease;
}

.bl-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.bl-hamburger.active span:nth-child(2) {
    opacity: 0;
}
.bl-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.bl-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
}

.bl-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(30, 41, 59, 0.7), rgba(30, 41, 59, 0.8));
}

.bl-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.bl-hero h1 {
    color: #fff;
    margin-bottom: 20px;
}

.bl-hero p {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #e2e8f0;
}

/* Cards */
.bl-card {
    background-color: #fff;
    border-radius: var(--she-border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    transition: transform var(--she-transition-speed) ease, box-shadow var(--she-transition-speed) ease;
    display: flex;
    flex-direction: column;
    text-align: center;
    overflow: hidden;
}

.bl-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.bl-card img {
    max-width: 100%;
    border-radius: var(--she-border-radius);
    margin-bottom: 20px;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.bl-card h3 {
    color: var(--she-primary);
    margin-bottom: 10px;
}

.bl-card-icon {
    font-size: 3em;
    color: var(--she-accent);
    margin-bottom: 20px;
}

/* Trust Indicators */
.bl-trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #fff;
    padding: 20px;
    border-radius: var(--she-border-radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.bl-trust-item .bl-icon {
    font-size: 2.5em;
    color: var(--she-accent);
}

/* Testimonials */
.bl-testimonial-card {
    background-color: #fff;
    padding: 30px;
    border-radius: var(--she-border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.bl-testimonial-card p {
    font-style: italic;
    margin-bottom: 15px;
    color: var(--she-primary);
}

.bl-testimonial-card .bl-author {
    font-weight: 700;
    color: var(--she-secondary);
}

.bl-testimonial-card .bl-author-title {
    font-size: 0.9em;
    color: var(--she-muted);
}

/* Lead Form */
.bl-form-section {
    background: linear-gradient(135deg, var(--she-primary), var(--she-secondary));
    color: #fff;
    padding: var(--she-spacing-lg) 0;
}

.bl-form-section h2 {
    color: #fff;
}

.bl-form-section p {
    color: #e2e8f0;
}

.bl-form-wrapper {
    background-color: #fff;
    padding: 40px;
    border-radius: var(--she-border-radius);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    margin: 40px auto 0;
}

.bl-form-group {
    margin-bottom: 20px;
    position: relative;
}

.bl-form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--she-primary);
    font-weight: 600;
}

.bl-form-group input[type='text'],
.bl-form-group input[type='email'],
.bl-form-group input[type='tel'],
.bl-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--she-muted);
    border-radius: var(--she-border-radius);
    font-family: 'Nunito', sans-serif;
    font-size: 1em;
    color: var(--she-text);
    transition: border-color var(--she-transition-speed) ease, box-shadow var(--she-transition-speed) ease;
}

.bl-form-group input:focus,
.bl-form-group textarea:focus {
    outline: none;
    border-color: var(--she-accent);
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.2);
}

.bl-form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.bl-form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: var(--she-border-radius);
    font-weight: 600;
    text-align: center;
    display: none;
}

.bl-form-message.bl-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.bl-form-message.bl-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* FAQ Accordion */
.bl-faq-item {
    background-color: #fff;
    border-radius: var(--she-border-radius);
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--she-transition-speed) ease;
}

.bl-faq-q {
    padding: 20px 30px;
    font-weight: 700;
    color: var(--she-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e2e8f0;
}

.bl-faq-q::after {
    content: '+';
    font-size: 1.5em;
    transition: transform var(--she-transition-speed) ease;
}

.bl-faq-item.active .bl-faq-q::after {
    transform: rotate(45deg);
}

.bl-faq-a {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--she-transition-speed) ease-out, padding var(--she-transition-speed) ease-out;
}

.bl-faq-item.active .bl-faq-a {
    max-height: 500px; /* Sufficiently large */
    padding: 20px 30px;
}

.bl-faq-a p {
    margin-bottom: 0;
    color: var(--she-text);
}

/* Footer */
.bl-footer {
    background-color: var(--she-secondary);
    color: #e2e8f0;
    padding: var(--she-spacing-md) 0;
    text-align: center;
    font-size: 0.9em;
}

.bl-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: left;
    margin-bottom: 40px;
}

.bl-footer-col h4 {
    color: var(--she-accent);
    margin-bottom: 20px;
    font-size: 1.1em;
}

.bl-footer-col ul {
    list-style: none;
}

.bl-footer-col ul li {
    margin-bottom: 10px;
}

.bl-footer-col ul li a {
    color: #e2e8f0;
}

.bl-footer-col ul li a:hover {
    color: var(--she-accent);
}

.bl-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 30px;
    font-size: 0.85em;
}

/* Animations */
.bl-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.bl-animate.bl-animated {
    opacity: 1;
    transform: translateY(0);
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .bl-nav-menu li {
        margin-left: 20px;
    }
    .bl-section {
        padding: var(--she-spacing-md) 0;
    }
    h1 {
        font-size: 2.5em;
    }
    h2 {
        font-size: 2em;
    }
    .bl-hero p {
        font-size: 1.2em;
    }
    .bl-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .bl-nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px; /* Adjust based on header height */
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.98);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        text-align: center;
    }

    .bl-nav-menu.active {
        display: flex;
    }

    .bl-nav-menu li {
        margin: 10px 0;
    }

    .bl-hamburger {
        display: flex;
    }

    .bl-hero {
        min-height: 70vh;
    }

    h1 {
        font-size: 2.2em;
    }

    h2 {
        font-size: 1.8em;
    }

    .bl-hero p {
        font-size: 1.1em;
    }

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

    .bl-card {
        padding: 25px;
    }

    .bl-trust-item {
        flex-direction: column;
        text-align: center;
    }

    .bl-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .bl-footer-col ul {
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .bl-header {
        padding: 10px 0;
    }
    .bl-logo {
        font-size: 1.5em;
    }
    .bl-logo img {
        height: 30px;
    }
    .bl-section {
        padding: var(--she-spacing-sm) 0;
    }
    h1 {
        font-size: 1.8em;
    }
    h2 {
        font-size: 1.5em;
    }
    .bl-hero p {
        font-size: 1em;
    }
    .bl-button {
        padding: 12px 20px;
        font-size: 0.9em;
    }
    .bl-form-wrapper {
        padding: 25px;
    }
    .bl-faq-q {
        padding: 15px 20px;
        font-size: 0.95em;
    }
    .bl-faq-a {
        padding: 15px 20px;
    }
}


/* === Quality polish === */
button, [class*="btn"], [class*="cta"] { transition: all 0.3s ease; cursor: pointer; }
button:hover, [class*="btn"]:hover, [class*="cta"]:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); filter: brightness(1.05); }