/* =====================================================================
   Atlantis Almere — Prijzen / arrangementen  (dc-usp-pills)
   Clean white pricing cards (design-007) on an ivory section.
   Scoped under .dc-usp. Edge-to-edge, self-contained.
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Karla:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,500&display=swap');

.elementor-widget-dc-usp-pills,
.elementor-widget-dc-usp-pills .elementor-widget-container {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    max-width: 100%;
}

.dc-usp {
    --dc-ink:       #fbf7f0;
    --dc-gold:      #c4923c;
    --dc-gold-soft: #e7c98b;
    --dc-heading:   #11212f;
    --dc-text:      #5a6470;
    --dc-line:      rgba(17,33,47,.10);
    --dc-card:      #ffffff;
    --dc-radius:    20px;
    --dc-ease:      cubic-bezier(.16,1,.3,1);

    position: relative;
    width: 100%; max-width: 100%; margin: 0;
    padding: clamp(72px, 10vw, 130px) 0;
    overflow: hidden;
    isolation: isolate;
    color: var(--dc-text);
    background:
        radial-gradient(60% 50% at 50% 0%, rgba(196,146,60,.08) 0%, transparent 60%),
        var(--dc-ink);
    font-family: 'Karla', system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
}
.dc-usp__inner {
    width: 100%; max-width: 1240px; margin: 0 auto;
    padding: 0 clamp(22px, 5vw, 60px);
}

/* ----------------------------- header ----------------------------- */
.dc-usp__head { max-width: 760px; margin: 0 auto clamp(36px, 5vw, 60px); text-align: center; }
.dc-usp__eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 18px 8px 14px;
    border: 1px solid var(--dc-line); border-radius: 999px;
    background: rgba(196,146,60,.08);
    font-size: 12.5px; font-weight: 700; letter-spacing: .2em;
    text-transform: uppercase; color: var(--dc-gold);
}
.dc-usp__eyebrow svg { width: 16px; height: 16px; }
.dc-usp__title {
    margin: 18px 0 0;
    font-family: 'Playfair Display', Georgia, serif; font-weight: 600; color: var(--dc-heading);
    font-size: clamp(1.9rem, 3.8vw, 3.1rem); line-height: 1.12; letter-spacing: -.01em;
}
.dc-usp__title em { font-style: italic; font-weight: 500; color: var(--dc-gold); }
.dc-usp__disclaimer { margin: 16px auto 0; max-width: 70ch; font-size: .86rem; line-height: 1.6; color: var(--dc-text); }

/* ----------------------------- grid ------------------------------ */
.dc-usp__grid {
    display: grid;
    grid-template-columns: repeat(var(--dc-cols, 3), 1fr);
    gap: clamp(16px, 1.8vw, 26px);
    align-items: start;
}

/* ----------------------------- plan card (design-007: photo-topped, scattered) -- */
.dc-usp__plan { position: relative; }   /* grid cell — GSAP animates this (reveal + scroll parallax) */

.dc-usp__plan-card {
    position: relative;
    display: flex; flex-direction: column; height: 100%;
    border: 1px solid var(--dc-line);
    border-radius: var(--dc-radius);
    background: var(--dc-card);
    overflow: hidden;
    box-shadow: 0 20px 46px -28px rgba(10,27,42,.4);
    /* individual transform props (compose with GSAP's transform on the parent) */
    transition: rotate .5s var(--dc-ease), translate .5s var(--dc-ease),
                box-shadow .45s var(--dc-ease), border-color .45s var(--dc-ease);
}
.dc-usp__plan--feat .dc-usp__plan-card {
    border-color: rgba(196,146,60,.55);
    box-shadow: 0 30px 64px -28px rgba(196,146,60,.5);
}

/* scattered, non-straight arrangement (desktop only) — like the design-007 collage */
@media (min-width: 901px) {
    .dc-usp__plan:nth-child(3n+1) .dc-usp__plan-card { rotate: -2.5deg; translate: 0 28px; }
    .dc-usp__plan:nth-child(3n+2) .dc-usp__plan-card { rotate:  1.5deg; translate: 0 -10px; }
    .dc-usp__plan:nth-child(3n+3) .dc-usp__plan-card { rotate: -1.5deg; translate: 0 36px; }
    /* hover straightens & lifts the card to the front */
    .dc-usp__plan-card:hover { rotate: 0deg !important; translate: 0 -10px !important; z-index: 3;
        box-shadow: 0 44px 80px -30px rgba(10,27,42,.55); }
    .dc-usp__plan:hover { z-index: 3; }
}

/* photo header */
.dc-usp__plan-media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #e9e2d4; }
.dc-usp__plan-img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--dc-ease); }
.dc-usp__plan:hover .dc-usp__plan-img { transform: scale(1.06); }
.dc-usp__plan-badge {
    position: absolute; top: 14px; left: 14px; z-index: 2;
    padding: 6px 13px; border-radius: 999px;
    background: linear-gradient(135deg, var(--dc-gold-soft), var(--dc-gold)); color: #1c1206;
    font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
    box-shadow: 0 8px 20px -8px rgba(0,0,0,.5);
}

/* body */
.dc-usp__plan-body { display: flex; flex-direction: column; flex: 1 1 auto; padding: clamp(20px, 2.2vw, 28px); }
.dc-usp__plan-head { display: flex; align-items: center; gap: 14px; }
.dc-usp__plan-ic {
    flex: none; display: grid; place-items: center; width: 48px; height: 48px;
    border-radius: 50%; color: #1c1206;
    background: linear-gradient(135deg, var(--dc-gold-soft), var(--dc-gold));
    box-shadow: 0 10px 22px -10px rgba(196,146,60,.7);
}
.dc-usp__plan-ic svg { width: 24px; height: 24px; }
.dc-usp__plan-titles { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.dc-usp__plan-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--dc-gold); }
.dc-usp__plan-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 1.9vw, 1.8rem); font-weight: 600; color: var(--dc-heading); line-height: 1.1;
}

/* prices */
.dc-usp__prices { margin: 20px 0 0; display: grid; gap: 10px; }
.dc-usp__price-row {
    display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
    padding: 11px 0; border-bottom: 1px dashed var(--dc-line);
}
.dc-usp__price-row:last-child { border-bottom: none; }
.dc-usp__price-lbl { font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--dc-text); }
.dc-usp__price-amt { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--dc-gold); white-space: nowrap; }

.dc-usp__rule { height: 1px; margin: 20px 0; background: var(--dc-line); }

/* included list */
.dc-usp__incl { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.dc-usp__incl li { display: flex; align-items: flex-start; gap: 11px; font-size: .95rem; line-height: 1.4; color: var(--dc-heading); }
.dc-usp__incl-ic {
    flex: none; display: grid; place-items: center; width: 22px; height: 22px; margin-top: 1px;
    border-radius: 7px; color: var(--dc-gold);
    background: rgba(196,146,60,.12); border: 1px solid rgba(196,146,60,.28);
}
.dc-usp__incl-ic svg { width: 14px; height: 14px; }

.dc-usp__plan-note { margin: 18px 0 0; padding-top: 16px; border-top: 1px dashed var(--dc-line); font-size: .82rem; line-height: 1.55; color: var(--dc-text); font-style: italic; }

/* ----------------------------- footer (CTA) ---------------------- */
.dc-usp__foot { margin-top: clamp(34px, 4vw, 52px); text-align: center; }
.dc-usp__birthday { margin: 0 0 18px; font-size: .95rem; font-weight: 600; color: var(--dc-heading); }
.dc-usp__cta {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 32px; border-radius: 999px;
    color: #1c1206; background: linear-gradient(135deg, var(--dc-gold-soft), var(--dc-gold));
    font-size: 1.02rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; text-decoration: none;
    box-shadow: 0 16px 34px -14px rgba(196,146,60,.7);
    transition: transform .35s var(--dc-ease), box-shadow .35s var(--dc-ease);
}
.dc-usp__cta svg { width: 18px; height: 18px; transition: transform .35s var(--dc-ease); }
.dc-usp__cta:hover { transform: translateY(-3px); box-shadow: 0 24px 48px -16px rgba(196,146,60,.85); }
.dc-usp__cta:hover svg { transform: scale(1.1); }
.dc-usp__cta:focus-visible { outline: 3px solid var(--dc-gold); outline-offset: 3px; }

/* ----------------------------- reveal states --------------------- */
.dc-usp--anim .dc-usp__head > *,
.dc-usp--anim .dc-usp__plan,
.dc-usp--anim .dc-usp__foot { opacity: 0; }

/* ----------------------------- responsive ------------------------- */
@media (max-width: 900px) { .dc-usp__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

@media (prefers-reduced-motion: reduce) {
    .dc-usp__plan-card { transition: none; rotate: 0 !important; translate: 0 !important; }
    .dc-usp--anim .dc-usp__head > *,
    .dc-usp--anim .dc-usp__plan,
    .dc-usp--anim .dc-usp__foot { opacity: 1 !important; }
}
