.elementor-455 .elementor-element.elementor-element-ba77f7a{--display:flex;}.elementor-455 .elementor-element.elementor-element-765a2de{--display:flex;}.elementor-455 .elementor-element.elementor-element-4c25a98{--display:flex;}/* Start custom CSS for html, class: .elementor-element-bcfc51a *//* --- B2B Hero Section Wrapper --- */
/* --- Eyebrow Pill Styles (Brought over for the new page) --- */
.saas-eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(14, 165, 233, 0.1); /* Soft blue translucent background */
    border: 1px solid rgba(14, 165, 233, 0.2); /* Thin blue border */
    padding: 6px 16px;
    border-radius: 100px; /* Perfect pill shape */
}

/* The glowing dot */
.live-dot {
    width: 8px;
    height: 8px;
    background-color: #38bdf8;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(56, 189, 248, 0.6);
}

/* The text inside the pill */
.eyebrow-text {
    color: #38bdf8;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
/* --- B2B Hero Section Wrapper --- */
.b2b-hero-wrapper {
    max-width: 1150px; /* Increased from 900px to let the text stretch wide */
    margin: 0 auto;
    padding: 120px 20px 80px; 
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Force the pill to perfectly center and reduce the gap */
.b2b-hero-wrapper .center-pill {
    margin: 0 auto 12px auto; /* Reduced the bottom gap from 24px to 12px */
}

/* --- Main Headline Typography --- */
.b2b-hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-top: 0 !important; /* Kills any hidden browser default spacing */
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    width: 100%; /* Ensures it fills the newly widened 1150px wrapper */
}

.b2b-hero-title .title-accent {
    background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* --- Subtitle Typography --- */
.b2b-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #94a3b8;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

/* --- The CTA Anchor Button --- */
.b2b-hero-action .b2b-pilot-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
    color: #ffffff;
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.39);
    border: none;
}

.b2b-hero-action .b2b-pilot-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
    background: linear-gradient(135deg, #38bdf8, #3b82f6);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 640px) {
    .b2b-hero-wrapper {
        padding: 80px 20px 60px; /* Tighter padding for phones */
    }
    
    /* Makes the button stretch full-width on tiny screens for better tapping */
    .b2b-hero-action {
        width: 100%; 
    }
    .b2b-hero-action .b2b-pilot-btn {
        width: 100%;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-cccb05e *//* --- Container & Layout --- */
.b2b-benefits-wrapper {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.benefits-pill {
    margin-bottom: 40px; /* Space between eyebrow and cards */
}

.b2b-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* --- The Magic Animated Cards --- */
.magic-card {
    position: relative;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
    padding: 2px; /* This padding creates the "border" thickness */
    transition: transform 0.3s ease;
    z-index: 1;
}

/* The spinning gradient border (hidden by default) */
.magic-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        transparent, 
        transparent, 
        transparent, 
        #0ea5e9, 
        #38bdf8, 
        transparent
    );
    animation: magic-spin 4s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -2;
}

/* Base border to show when not hovered */
.magic-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    z-index: -1;
}

/* The actual card background that sits ON TOP of the spinning gradient */
.magic-card-content {
    background: #0f172a; /* Solid dark background to hide the middle of the gradient */
    border-radius: 18px; /* Slightly smaller than outer wrapper to let gradient peak through */
    height: 100%;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    transition: background 0.3s ease;
}

/* --- Hover Interactions --- */
.magic-card:hover {
    transform: translateY(-4px); /* Slight lift */
}

.magic-card:hover::before {
    opacity: 1; /* Reveals the spinning glowing border */
}

.magic-card:hover .magic-card-content {
    background: #111827; /* Slightly lightens the inner card on hover */
}

.magic-card:hover .benefit-icon {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.3);
}

/* --- Card Typography & Icons --- */
.benefit-icon {
    width: 48px;
    height: 48px;
    background: #0ea5e9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-bottom: 24px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy transition */
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
}

.benefit-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.benefit-text {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

/* --- Animation Keyframe --- */
@keyframes magic-spin {
    100% {
        transform: rotate(360deg);
    }
}

/* --- Mobile Responsiveness --- */
@media (max-width: 1024px) {
    .b2b-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .b2b-benefits-grid {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c714233 *//* --- Main Wrapper & Ambient Effects --- */
.premium-form-wrapper {
    position: relative;
    max-width: 850px;
    margin: 100px auto;
    padding: 0 20px;
    z-index: 1;
}

/* The neon glowing blob behind the form */
.ambient-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 60%);
    filter: blur(60px);
    z-index: -1;
    pointer-events: none;
}

/* --- The Glassmorphism Card --- */
.premium-form-card {
    background: rgba(15, 23, 42, 0.5); /* Deep translucent slate */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 50px;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6), 
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* --- Form Header Typography --- */
.form-header {
    text-align: left;
    margin-bottom: 40px;
}

.form-pill {
    margin-bottom: 20px;
    border-color: rgba(14, 165, 233, 0.3);
}

.form-title {
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 8px 0;
    letter-spacing: -0.02em;
}

.form-title .title-accent {
    color: #38bdf8;
}

.form-subtitle {
    color: #94a3b8;
    font-size: 1.05rem;
    margin: 0;
}

/* --- Form Grid & Layout --- */
.b2b-pilot-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: flex;
    gap: 24px;
}

.form-row.full-width {
    width: 100%;
}

.input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

/* --- Premium Input Styling --- */
.input-group label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.input-group input {
    background: rgba(0, 0, 0, 0.2); /* Darker inset look */
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    padding: 16px 20px;
    border-radius: 12px;
    outline: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.input-group input::placeholder {
    color: #475569;
}

/* The Magic Focus Effect */
.input-group input:focus {
    background: rgba(15, 23, 42, 0.8);
    border-color: #0ea5e9;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.15),
                inset 0 2px 4px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* Highlights the label in cyan when the input is focused */
.input-group:focus-within label {
    color: #38bdf8;
}

/* --- The Submit Button --- */
.submit-glow-btn {
    margin-top: 16px;
    width: 100%;
    padding: 18px;
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px -5px rgba(37, 99, 235, 0.5);
}

/* Hover lift and glow */
.submit-glow-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px -5px rgba(37, 99, 235, 0.7);
    background: linear-gradient(135deg, #38bdf8, #3b82f6);
}

/* A subtle sweeping shine effect across the button */
.submit-glow-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent);
    transform: skewX(-20deg);
    transition: all 0.5s ease;
}

.submit-glow-btn:hover::before {
    left: 150%;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .premium-form-card {
        padding: 32px 20px;
    }
    .form-row {
        flex-direction: column;
        gap: 24px;
    }

}

/* --- Direct Email Fallback Styling --- */
.form-footer-contact {
    text-align: center;
    margin-top: 16px;
    font-size: 0.9rem;
    color: #64748b; /* Muted gray so it doesn't compete with the button */
}

.form-footer-contact a {
    color: #38bdf8; /* Signature cyan accent */
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding-left: 4px;
}

/* Adds a glowing text effect when hovered */
.form-footer-contact a:hover {
    color: #ffffff;
    text-shadow: 0 0 12px rgba(56, 189, 248, 0.8);
}/* End custom CSS */