/* ============================================
   EASY EDV GmbH – Site Styles
   Professional IT-Service Design
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --ed-primary: #1a56db;
    --ed-primary-dark: #1344b0;
    --ed-accent: #0ea5e9;
    --ed-accent-dark: #0284c7;
    --ed-dark: #0f172a;
    --ed-dark-light: #1e293b;
    --ed-text: #1e293b;
    --ed-text-light: #64748b;
    --ed-bg: #ffffff;
    --ed-bg-light: #f1f5f9;
    --ed-bg-dark: #0f172a;
    --ed-border: #e2e8f0;
    --ed-success: #22c55e;
    --ed-warning: #f59e0b;
    --ed-danger: #ef4444;
    --ed-white: #ffffff;
    --ed-radius: 12px;
    --ed-radius-sm: 8px;
    --ed-radius-lg: 16px;
    --ed-shadow: 0 1px 3px rgba(0,0,0,.08), 0 4px 12px rgba(0,0,0,.04);
    --ed-shadow-md: 0 4px 16px rgba(0,0,0,.1);
    --ed-shadow-lg: 0 8px 32px rgba(0,0,0,.12);
    --ed-transition: .25s cubic-bezier(.4,0,.2,1);
    --ed-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --ed-container: 1200px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: var(--ed-font);
    color: var(--ed-text);
    background: var(--ed-bg);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}
a { color: var(--ed-primary); text-decoration: none; transition: color var(--ed-transition); }
a:hover { color: var(--ed-primary-dark); }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { line-height: 1.25; font-weight: 700; color: var(--ed-dark); }
h1:focus, h2:focus, h3:focus, h4:focus { outline: none; }
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: 1.25rem; }
h1 em, h2 em { font-style: normal; color: var(--ed-primary); }
p { margin-bottom: 16px; }

/* ---------- Container ---------- */
.ed-container { max-width: var(--ed-container); margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.ed-btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-weight: 600; border-radius: var(--ed-radius-sm); cursor: pointer;
    transition: all var(--ed-transition); border: 2px solid transparent;
    text-decoration: none; font-size: .95rem; padding: 10px 24px;
    line-height: 1.4;
}
.ed-btn-primary { background: var(--ed-primary); color: var(--ed-white); border-color: var(--ed-primary); }
.ed-btn-primary:hover { background: var(--ed-primary-dark); border-color: var(--ed-primary-dark); color: var(--ed-white); transform: translateY(-1px); box-shadow: var(--ed-shadow-md); }
.ed-btn-white { background: var(--ed-white); color: var(--ed-dark); border-color: var(--ed-white); }
.ed-btn-white:hover { background: var(--ed-bg-light); color: var(--ed-dark); }
.ed-btn-outline { background: transparent; color: var(--ed-primary); border-color: var(--ed-primary); }
.ed-btn-outline:hover { background: var(--ed-primary); color: var(--ed-white); }
.ed-btn-sm { padding: 6px 16px; font-size: .85rem; }
.ed-btn-lg { padding: 14px 32px; font-size: 1.05rem; }

/* ---------- Badges ---------- */
.ed-badge {
    display: inline-block; padding: 4px 14px; border-radius: 20px;
    font-weight: 600; font-size: .8rem; letter-spacing: .02em; text-transform: uppercase;
}
.ed-badge-blue { background: #dbeafe; color: #1e40af; }
.ed-badge-accent { background: #e0f2fe; color: #0369a1; }
.ed-badge-dark { background: #e2e8f0; color: var(--ed-dark); }

.ed-inline-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 14px; border-radius: 20px; font-size: .85rem; font-weight: 600;
    background: #dbeafe; color: #1e40af;
}
.ed-badge-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }

/* ---------- Header ---------- */
.ed-header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(255,255,255,.97); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--ed-border);
}
.ed-header-inner {
    max-width: var(--ed-container); margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between; height: 64px;
}
.ed-header-logo {
    display: inline-flex; align-items: center;
}
.ed-header-logo img { height: 36px; width: auto; }
.ed-header-nav { display: flex; align-items: center; gap: 24px; }
.ed-header-nav a { font-weight: 500; color: var(--ed-text); font-size: .93rem; }
.ed-header-nav a:hover { color: var(--ed-primary); }
.ed-header-cta { margin-left: 8px; }
.ed-header-nav a.ed-btn-primary { color: var(--ed-white); }
.ed-mobile-checkbox { display: none; }
.ed-mobile-toggle { display: none; }

/* ---------- Hero ---------- */
.ed-hero {
    background: linear-gradient(135deg, var(--ed-dark) 0%, #1e3a5f 100%);
    color: var(--ed-white); padding: 80px 0 64px; overflow: hidden;
}
.ed-hero h1 { color: var(--ed-white); }
.ed-hero h1 em { color: var(--ed-accent); }
.ed-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.ed-hero-sub { font-size: 1.15rem; opacity: .9; margin-bottom: 32px; max-width: 540px; }
.ed-hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.ed-hero-badges { display: flex; flex-wrap: wrap; gap: 16px; }
.ed-hero-badge {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .85rem; font-weight: 500; opacity: .85;
}
.ed-hero-badge i { color: var(--ed-accent); }
.ed-hero-visual img {
    border-radius: 0; box-shadow: none;
    max-height: 480px; object-fit: contain; width: 100%;
}
.ed-hero-simple { padding: 56px 0 40px; text-align: center; }
.ed-hero-simple .ed-hero-inner { display: block; max-width: 720px; margin: 0 auto; }
.ed-hero-simple .ed-hero-sub { max-width: 600px; margin: 0 auto; }

/* ---------- Trust Bar ---------- */
.ed-trust-bar { background: var(--ed-bg-light); padding: 20px 0; border-bottom: 1px solid var(--ed-border); }
.ed-trust-items { display: flex; justify-content: center; flex-wrap: wrap; gap: 32px; }
.ed-trust-item { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: .9rem; color: var(--ed-text-light); }
.ed-trust-item i { color: var(--ed-primary); font-size: 1.1rem; }

/* ---------- Sections ---------- */
.ed-section { padding: 72px 0; }
.ed-section-light { background: var(--ed-bg-light); }
.ed-section-title { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.ed-section-title p { color: var(--ed-text-light); font-size: 1.05rem; margin-top: 12px; }
.ed-section-title .ed-badge { margin-bottom: 12px; }

/* ---------- Cards ---------- */
.ed-card {
    background: var(--ed-white); border-radius: var(--ed-radius); padding: 28px;
    box-shadow: var(--ed-shadow); transition: all var(--ed-transition);
    border: 1px solid var(--ed-border);
}
.ed-card:hover { transform: translateY(-4px); box-shadow: var(--ed-shadow-md); }
.ed-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.ed-card-header h3 { font-size: 1.1rem; }
.ed-card-icon {
    width: 44px; height: 44px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
    flex-shrink: 0;
}
.ed-card-icon-blue { background: #dbeafe; color: #1e40af; }
.ed-card-icon-accent { background: #e0f2fe; color: #0369a1; }
.ed-card-icon-dark { background: #e2e8f0; color: var(--ed-dark); }
.ed-card p { color: var(--ed-text-light); font-size: .93rem; margin-bottom: 16px; }
.ed-card-link { font-weight: 600; font-size: .9rem; color: var(--ed-primary); display: inline-flex; align-items: center; gap: 6px; }
.ed-card-img { border-radius: var(--ed-radius-sm); margin-bottom: 16px; width: 100%; height: 180px; object-fit: cover; }

/* Card grids */
.ed-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ed-card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.ed-card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ---------- Feature Cards ---------- */
.ed-feature-card {
    background: var(--ed-white); border-radius: var(--ed-radius); padding: 36px 28px;
    box-shadow: var(--ed-shadow); transition: all var(--ed-transition);
    border: 1px solid var(--ed-border); text-decoration: none; color: inherit; display: block;
}
.ed-feature-card:hover { transform: translateY(-4px); box-shadow: var(--ed-shadow-md); color: inherit; }
.ed-feature-header { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.ed-feature-icon {
    width: 48px; height: 48px; min-width: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    background: linear-gradient(135deg, var(--ed-primary), var(--ed-accent));
    color: var(--ed-white);
}
.ed-feature-card h3 { margin: 0; }
.ed-feature-card p { color: var(--ed-text-light); font-size: .93rem; }

/* ---------- Info Cards ---------- */
.ed-info-card {
    background: var(--ed-white); border-radius: var(--ed-radius); padding: 32px 24px;
    box-shadow: var(--ed-shadow); border: 1px solid var(--ed-border); text-align: center;
}
.ed-info-icon {
    width: 56px; height: 56px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--ed-primary), var(--ed-accent));
    color: var(--ed-white);
}
.ed-info-card h3 { margin-bottom: 12px; font-size: 1.1rem; }
.ed-info-card p { color: var(--ed-text-light); font-size: .9rem; margin: 0; }

/* ---------- Package Cards ---------- */
.ed-package-card {
    background: var(--ed-white); border-radius: var(--ed-radius); overflow: hidden;
    box-shadow: var(--ed-shadow); border: 1px solid var(--ed-border);
    transition: all var(--ed-transition);
}
.ed-package-card:hover { transform: translateY(-4px); box-shadow: var(--ed-shadow-md); }
.ed-package-header {
    padding: 24px; text-align: center; color: var(--ed-white); position: relative;
}
.ed-package-header i { font-size: 1.5rem; margin-bottom: 8px; display: block; }
.ed-package-header h3 { color: var(--ed-white); margin: 0; font-size: 1.15rem; }
.ed-package-prevention { background: linear-gradient(135deg, #1e40af, #3b82f6); }
.ed-package-combi { background: linear-gradient(135deg, var(--ed-primary), var(--ed-accent)); }
.ed-package-intervention { background: linear-gradient(135deg, #0369a1, #06b6d4); }
.ed-package-badge {
    position: absolute; top: 12px; right: 12px;
    background: var(--ed-warning); color: var(--ed-dark); padding: 2px 10px;
    border-radius: 12px; font-size: .75rem; font-weight: 700;
}
.ed-package-body { padding: 24px; text-align: center; }
.ed-package-body p { color: var(--ed-text-light); font-size: .93rem; margin-bottom: 20px; }
.ed-package-highlight { border: 2px solid var(--ed-primary); transform: scale(1.03); }
.ed-package-highlight:hover { transform: scale(1.03) translateY(-4px); }

/* ---------- USP Section ---------- */
.ed-usp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.ed-usp-list { list-style: none; padding: 0; margin-top: 24px; }
.ed-usp-list li { display: flex; gap: 16px; margin-bottom: 20px; align-items: flex-start; }
.ed-usp-list li i { color: var(--ed-primary); font-size: 1.2rem; margin-top: 3px; flex-shrink: 0; }
.ed-usp-list li div { display: flex; flex-direction: column; }
.ed-usp-list li span { color: var(--ed-text-light); font-size: .9rem; margin-top: 2px; }
.ed-usp-image { border-radius: var(--ed-radius-lg); box-shadow: var(--ed-shadow-lg); width: 100%; }

/* ---------- Two Column ---------- */
.ed-two-col { display: grid; grid-template-columns: 1fr 1fr; }

/* ---------- Rounded Images ---------- */
.ed-rounded-img { border-radius: var(--ed-radius-lg); box-shadow: var(--ed-shadow-lg); width: 100%; }

/* ---------- Checklist ---------- */
.ed-checklist { list-style: none; padding: 0; }
.ed-checklist li { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: .95rem; }
.ed-checklist li i { color: var(--ed-primary); flex-shrink: 0; }

/* ---------- Testimonials ---------- */
.ed-testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ed-testimonial {
    background: var(--ed-white); border-radius: var(--ed-radius); padding: 28px;
    box-shadow: var(--ed-shadow); border: 1px solid var(--ed-border); text-align: center;
}
.ed-testimonial-stars { color: var(--ed-warning); margin-bottom: 12px; font-size: .9rem; }
.ed-testimonial p { font-style: italic; color: var(--ed-text); margin-bottom: 12px; }
.ed-testimonial strong { color: var(--ed-text-light); font-size: .9rem; }

/* ---------- Contact Grid ---------- */
.ed-contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ed-contact-card {
    background: var(--ed-white); border-radius: var(--ed-radius); padding: 28px;
    box-shadow: var(--ed-shadow); text-align: center; border: 1px solid var(--ed-border);
    text-decoration: none; color: inherit; display: block; transition: all var(--ed-transition);
}
.ed-contact-card:hover { transform: translateY(-2px); box-shadow: var(--ed-shadow-md); color: inherit; }
.ed-contact-card i { font-size: 1.5rem; color: var(--ed-primary); margin-bottom: 12px; }
.ed-contact-card h4 { margin-bottom: 4px; }
.ed-contact-card p { margin: 0; }
.ed-contact-detail { display: block; font-size: .85rem; color: var(--ed-text-light); margin-top: 4px; }

/* ---------- CTA Banner ---------- */
.ed-cta-banner {
    background: linear-gradient(135deg, var(--ed-dark) 0%, #1e3a5f 100%);
    color: var(--ed-white); padding: 56px 0; text-align: center;
}
.ed-cta-banner h2 { color: var(--ed-white); margin-bottom: 12px; }
.ed-cta-banner p { opacity: .9; margin-bottom: 28px; font-size: 1.05rem; }
.ed-cta-buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }

/* ---------- Footer ---------- */
.ed-footer {
    background: var(--ed-bg-dark); color: rgba(255,255,255,.8); padding: 56px 0 0;
}
.ed-footer h4 { color: var(--ed-white); font-size: 1rem; margin-bottom: 16px; }
.ed-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.ed-footer-brand p { font-size: .9rem; line-height: 1.7; margin: 12px 0 16px; }
.ed-footer-contact { list-style: none; padding: 0; }
.ed-footer-contact li { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; font-size: .9rem; }
.ed-footer-contact a { color: rgba(255,255,255,.8); }
.ed-footer-contact a:hover { color: var(--ed-white); }
.ed-footer-social { display: flex; gap: 12px; margin-top: 16px; }
.ed-footer-social a {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,.1); color: rgba(255,255,255,.7);
    font-size: 1rem; transition: all .2s ease;
}
.ed-footer-social a:hover { background: var(--ed-primary); color: var(--ed-white); transform: translateY(-2px); }
.ed-footer-grid > div:not(.ed-footer-brand) { display: flex; flex-direction: column; gap: 8px; }
.ed-footer-grid > div:not(.ed-footer-brand) a { color: rgba(255,255,255,.7); font-size: .9rem; }
.ed-footer-grid > div:not(.ed-footer-brand) a:hover { color: var(--ed-white); }
.ed-footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding: 24px 0; margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,.1); font-size: .85rem;
}
.ed-footer-legal { display: flex; gap: 20px; }
.ed-footer-legal a { color: rgba(255,255,255,.6); }
.ed-footer-legal a:hover { color: var(--ed-white); }

/* ---------- Floating Phone ---------- */
.ed-floating-phone {
    position: fixed; bottom: 24px; right: 24px; z-index: 900;
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--ed-primary); color: var(--ed-white);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; box-shadow: var(--ed-shadow-lg);
    transition: all var(--ed-transition); text-decoration: none;
}
.ed-floating-phone:hover { background: var(--ed-primary-dark); transform: scale(1.08); color: var(--ed-white); }

/* ---------- Mobile CTA ---------- */
.ed-mobile-cta { display: none; }

/* ---------- Forms ---------- */
.ed-form { display: flex; flex-direction: column; gap: 16px; }
.ed-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ed-form-group { display: flex; flex-direction: column; gap: 4px; }
.ed-form-group label { font-weight: 600; font-size: .9rem; color: var(--ed-dark); }
.ed-form-group input,
.ed-form-group select,
.ed-form-group textarea {
    padding: 12px 14px; border: 1px solid var(--ed-border); border-radius: var(--ed-radius-sm);
    font-size: .95rem; font-family: var(--ed-font); transition: border-color var(--ed-transition);
    background: var(--ed-white);
}
.ed-form-group input:focus,
.ed-form-group select:focus,
.ed-form-group textarea:focus {
    outline: none; border-color: var(--ed-primary); box-shadow: 0 0 0 3px rgba(26,86,219,.12);
}
.ed-form-checkbox { display: flex; align-items: flex-start; gap: 8px; }
.ed-form-checkbox input { margin-top: 4px; }
.ed-form-checkbox label { font-size: .85rem; color: var(--ed-text-light); line-height: 1.5; }
.ed-hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.ed-form-success {
    display: none; background: #dcfce7; color: #166534; padding: 20px;
    border-radius: var(--ed-radius-sm); text-align: center; margin-top: 16px;
    font-weight: 500;
}

/* ---------- Legal Pages ---------- */
.ed-legal h2 { font-size: 1.3rem; margin: 32px 0 12px; color: var(--ed-dark); }
.ed-legal h3 { font-size: 1.1rem; margin: 24px 0 8px; color: var(--ed-dark); }
.ed-legal p { color: var(--ed-text); line-height: 1.8; }

/* ---------- Scroll Animations ---------- */
.ed-fade-up { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.ed-fade-in { opacity: 0; transition: opacity .6s ease; }
.ed-slide-left { opacity: 0; transform: translateX(-32px); transition: opacity .6s ease, transform .6s ease; }
.ed-slide-right { opacity: 0; transform: translateX(32px); transition: opacity .6s ease, transform .6s ease; }
.ed-scale-in { opacity: 0; transform: scale(.95); transition: opacity .5s ease, transform .5s ease; }
.ed-fade-up.visible,
.ed-fade-in.visible,
.ed-slide-left.visible,
.ed-slide-right.visible,
.ed-scale-in.visible { opacity: 1; transform: none; }
.ed-stagger > *:nth-child(1) { transition-delay: 0s; }
.ed-stagger > *:nth-child(2) { transition-delay: .08s; }
.ed-stagger > *:nth-child(3) { transition-delay: .16s; }
.ed-stagger > *:nth-child(4) { transition-delay: .24s; }
.ed-stagger > *:nth-child(5) { transition-delay: .32s; }
.ed-stagger > *:nth-child(6) { transition-delay: .40s; }
.ed-stagger > *:nth-child(7) { transition-delay: .48s; }

/* ---------- Page Hero Image ---------- */
.ed-page-hero-img {
    width: 100%; max-height: 400px; object-fit: cover;
    border-radius: var(--ed-radius-lg); box-shadow: var(--ed-shadow-lg);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .ed-card-grid { grid-template-columns: repeat(2, 1fr); }
    .ed-card-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .ed-testimonial-grid { grid-template-columns: repeat(2, 1fr); }
    .ed-footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 768px) {
    /* Mobile menu */
    .ed-mobile-toggle {
        display: flex; flex-direction: column; gap: 5px; cursor: pointer;
        width: 28px; height: 20px; justify-content: center; z-index: 1001;
    }
    .ed-mobile-toggle span {
        display: block; height: 2px; background: var(--ed-dark);
        border-radius: 2px; transition: all .3s ease; width: 100%;
    }
    .ed-mobile-checkbox:checked ~ .ed-mobile-toggle span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .ed-mobile-checkbox:checked ~ .ed-mobile-toggle span:nth-child(2) { opacity: 0; }
    .ed-mobile-checkbox:checked ~ .ed-mobile-toggle span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .ed-header-nav {
        position: fixed; top: 0; right: -100%; width: 80%; max-width: 320px;
        height: 100vh; background: var(--ed-white); z-index: 1000;
        flex-direction: column; padding: 80px 32px 32px; gap: 16px;
        box-shadow: -4px 0 20px rgba(0,0,0,.15); transition: right .3s ease;
    }
    .ed-mobile-checkbox:checked ~ .ed-header-nav { right: 0; }
    .ed-header-nav a { font-size: 1.05rem; padding: 8px 0; }
    .ed-header-cta { width: 100%; text-align: center; justify-content: center; margin: 8px 0 0; }

    /* Layout adjustments */
    .ed-hero-inner { grid-template-columns: 1fr !important; text-align: center; }
    .ed-hero-visual { display: none; }
    .ed-hero-sub { margin: 0 auto 24px; }
    .ed-hero-ctas { justify-content: center; }
    .ed-hero-badges { justify-content: center; }

    .ed-two-col { grid-template-columns: 1fr !important; }
    .ed-usp-grid { grid-template-columns: 1fr; }
    .ed-usp-image { max-height: 300px; object-fit: cover; }
    .ed-card-grid, .ed-card-grid-2, .ed-card-grid-3 { grid-template-columns: 1fr; }
    .ed-testimonial-grid { grid-template-columns: 1fr; }
    .ed-contact-grid { grid-template-columns: 1fr; }
    .ed-footer-grid { grid-template-columns: 1fr; }
    .ed-footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .ed-form-row { grid-template-columns: 1fr; }

    .ed-package-highlight { transform: none; }
    .ed-package-highlight:hover { transform: translateY(-4px); }

    /* Mobile CTA */
    .ed-floating-phone { display: none; }
    .ed-mobile-cta {
        display: block; position: fixed; bottom: 0; left: 0; right: 0;
        z-index: 900; background: var(--ed-white);
        border-top: 1px solid var(--ed-border); box-shadow: 0 -2px 12px rgba(0,0,0,.08);
        padding: 8px;
    }
    .ed-mobile-cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
    .ed-mobile-cta-call,
    .ed-mobile-cta-msg {
        display: flex; align-items: center; justify-content: center; gap: 6px;
        padding: 12px; border-radius: var(--ed-radius-sm);
        font-weight: 600; font-size: .9rem; text-decoration: none;
    }
    .ed-mobile-cta-call { background: var(--ed-primary); color: var(--ed-white); }
    .ed-mobile-cta-msg { background: var(--ed-bg-light); color: var(--ed-dark); border: 1px solid var(--ed-border); }

    body { padding-bottom: 68px; }

    .ed-slide-left, .ed-slide-right { opacity: 0; transform: translateY(24px); }
}

@media (max-width: 480px) {
    .ed-hero { padding: 48px 0 40px; }
    .ed-section { padding: 48px 0; }
    .ed-hero-ctas { flex-direction: column; }
    .ed-hero-ctas .ed-btn { width: 100%; justify-content: center; }
}
