/* =========================================================
   Edel Plugin LP Common Styles
   ========================================================= */

#edel-plugin-lp {
    --text: #182640;
    --brand: #2563eb;
    --accent: #f59e0b;
    --bg: #ffffff;
    --light: #f8fafc;
    --max: 1100px;
    --font-base: "Montserrat", "Noto Sans JP", sans-serif;

    font-family: var(--font-base);
    color: var(--text);
    line-height: 2.0;
    /* Increased line-height for better readability */
    font-size: 18px;
    /* Increased base font size */
    overflow-x: hidden;
}

#edel-plugin-lp * {
    box-sizing: border-box;
}

#edel-plugin-lp img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

#edel-plugin-lp a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

#edel-plugin-lp a:hover {
    opacity: 0.8;
}

/* Utility */
#edel-plugin-lp .container {
    width: min(var(--max), 90%);
    /* Slightly wider on mobile */
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Typography */
#edel-plugin-lp h2 {
    font-size: clamp(28px, 5vw, 42px);
    /* Larger */
    font-weight: 800;
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
    /* Added Shadow */
    line-height: 1.4;
}

#edel-plugin-lp h3 {
    font-size: 26px;
    /* Larger */
    font-weight: 700;
    margin-bottom: 24px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    /* Added Shadow */
    line-height: 1.4;
}

#edel-plugin-lp p {
    margin-bottom: 24px;
}

/* Parallax Section common styles */
#edel-plugin-lp .parallax-section {
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 140px 0;
    /* More spacing */
    color: #fff;
    isolation: isolate;
}

#edel-plugin-lp .parallax-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(24, 38, 64, 0.75);
    /* Darker overlay for better text contrast */
    z-index: 1;
}

@media (hover: none) and (pointer: coarse) {
    #edel-plugin-lp .parallax-section {
        background-attachment: scroll;
    }
}

/* Feature Box Dark (used inside parallax) */
#edel-plugin-lp .feature-box-dark {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 60px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 900px;
    margin: 0 auto;
}

#edel-plugin-lp .feature-box-dark p {
    font-size: 17px;
}

#edel-plugin-lp .feature-box-dark h2 {
    color: #fff;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Hero Specifics (Layout structure, specific background set in PHP inline styles or specific class) */
#edel-plugin-lp .hero {
    min-height: 60vh !important;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 200px !important;
    padding-bottom: 40px !important;
    background-size: 100% auto !important;
    background-position: top center !important;
}

#edel-plugin-lp .hero h1 {
    font-size: 50px;
    /* Reduced to ~50px */
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.4);
}

#edel-plugin-lp .hero p {
    font-size: 18px;
    /* Reduced from 22px */
    font-weight: 600;
    opacity: 1;
    max-width: 900px;
    margin: 0 auto 40px;
}

#edel-plugin-lp .hero-btn {
    display: inline-block;
    background: var(--brand);
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    /* Reduced from 20px */
    padding: 18px 48px;
    /* Reduced padding */
    border-radius: 99px;
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

#edel-plugin-lp .hero-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.5);
    opacity: 1;
}

/* Intro Section */
#edel-plugin-lp .intro {
    padding: 120px 0;
    text-align: center;
}

#edel-plugin-lp .intro-lead {
    font-size: 24px;
    /* Larger */
    font-weight: 700;
    line-height: 1.8;
    margin-bottom: 50px;
    color: var(--brand);
}

/* Grid Features */
#edel-plugin-lp .grid-section {
    padding: 120px 0;
    background: var(--light);
}

#edel-plugin-lp .feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Forced 2 columns */
    gap: 40px;
}

@media (max-width: 768px) {
    #edel-plugin-lp .feature-grid {
        grid-template-columns: 1fr;
    }
}

#edel-plugin-lp .feature-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s;
    height: 100%;
}

#edel-plugin-lp .feature-card:hover {
    transform: translateY(-8px);
}

#edel-plugin-lp .feature-icon {
    font-size: 50px;
    color: var(--brand);
    margin-bottom: 30px;
}

/* Use Cases */
#edel-plugin-lp .use-case-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    text-align: left;
}

@media (max-width: 800px) {
    #edel-plugin-lp .use-case-list {
        grid-template-columns: 1fr;
    }
}

#edel-plugin-lp .use-case-item {
    background: rgba(255, 255, 255, 0.96);
    color: var(--text);
    padding: 40px;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

#edel-plugin-lp .use-case-item i {
    color: var(--brand);
    font-size: 24px;
    margin-top: 5px;
    flex-shrink: 0;
}

/* Specs & CTA */
#edel-plugin-lp .specs-section {
    padding: 100px 0;
    background: #fff;
    text-align: center;
}

#edel-plugin-lp .specs-box {
    display: inline-block;
    text-align: left;
    border: 1px solid var(--stroke);
    border-radius: 16px;
    padding: 40px 60px;
    background: var(--light);
}

#edel-plugin-lp .cta-section {
    background: #f8fafc;
    /* Light Gray */
    color: #333;
    /* Dark Text */
    text-align: center;
    padding: 140px 0;
}

/* Demo Section */
#edel-plugin-lp .demo-section {
    padding: 100px 0;
    background: #fff;
    text-align: center;
}

#edel-plugin-lp .demo-area {
    background: var(--light);
    border: 2px dashed #cbd5e1;
    border-radius: 20px;
    padding: 60px;
    margin: 40px auto;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Footer CTA (Parallax) */
#edel-plugin-lp .edel-footer-cta {
    position: relative;
    padding: 120px 0;
    width: 100%;
    margin-top: 0;
    background-image: url('https://edel-hearts.com/wp-content/uploads/20260122-DC3671.webp');
    /* Use absolute URL to be safe */
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    color: #fff;
    text-align: center;
}

#edel-plugin-lp .edel-footer-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(24, 38, 64, 0.90);
    z-index: 1;
}

#edel-plugin-lp .edel-footer-cta .edel-wrap {
    position: relative;
    z-index: 2;
    max-width: var(--max);
    margin: 0 auto;
}

#edel-plugin-lp .edel-footer-cta h2 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 20px;
}

#edel-plugin-lp .edel-footer-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

#edel-plugin-lp .btn-white {
    background: #fff;
    color: var(--text);
    padding: 16px 32px;
    border-radius: 99px;
    font-weight: 700;
    display: inline-block;
}