/* =========================================================
   ELIASSDEVLAND — FRONT PAGE
   Palette: icy blue + cherry accent on graphite & light
   ========================================================= */

:root {
    --edl-icy: #ADD8EC;
    --edl-icy-2: #8FC4DE;
    --edl-icy-soft: rgba(173, 216, 236, 0.18);
    --edl-cherry: #C33149;
    --edl-cherry-2: #A6273C;
    --edl-cherry-soft: rgba(195, 49, 73, 0.12);
    --edl-graphite: #2F2D2E;
    --edl-graphite-2: #1F1D1F;
    --edl-graphite-3: #141315;
    --edl-light: #F4F6F8;
    --edl-light-2: #ECEFF3;
    --edl-white: #FFFFFF;

    --edl-text: #2F2D2E;
    --edl-muted: rgba(47, 45, 46, 0.66);
    --edl-muted-light: rgba(255, 255, 255, 0.72);
    --edl-border: rgba(47, 45, 46, 0.08);
    --edl-border-light: rgba(255, 255, 255, 0.12);

    --edl-hero-bg:
        radial-gradient(1200px 600px at 85% 10%, rgba(173, 216, 236, 0.14), transparent 60%),
        radial-gradient(900px 500px at 10% 90%, rgba(195, 49, 73, 0.08), transparent 60%),
        linear-gradient(160deg, #2F2D2E 0%, #1F1D1F 55%, #141315 100%);

    --edl-shadow-sm: 0 8px 24px rgba(31, 29, 31, 0.06);
    --edl-shadow-md: 0 20px 50px rgba(31, 29, 31, 0.10);
    --edl-shadow-lg: 0 30px 80px rgba(31, 29, 31, 0.14);
    --edl-shadow-dark: 0 30px 80px rgba(0, 0, 0, 0.35);
    --edl-shadow-icy: 0 18px 40px rgba(173, 216, 236, 0.35);

    --font-title: 'Space Grotesk', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;

    --edl-radius-sm: 14px;
    --edl-radius: 22px;
    --edl-radius-lg: 30px;
}

/* =========================================================
   BASE
   ========================================================= */

body {
    font-family: var(--font-body) !important;
    background: var(--edl-light);
    color: var(--edl-text);
    -webkit-font-smoothing: antialiased;
}

.edl-home {
    background: var(--edl-light);
    overflow: hidden;
}

.edl-home h1,
.edl-home h2,
.edl-home h3,
.edl-home h4,
.edl-home h5,
.edl-home h6 {
    font-family: var(--font-title) !important;
    letter-spacing: -0.03em;
}

/* =========================================================
   SHARED
   ========================================================= */

.edl-section-head {
    max-width: 760px;
    margin: 0 auto 3rem;
    text-align: center;
}

.edl-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1rem;
    padding: 0.4rem 0.85rem;
    font-family: var(--font-title);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--edl-cherry);
    background: var(--edl-cherry-soft);
    border-radius: 999px;
}

.edl-eyebrow i {
    font-size: 0.7rem;
}

.edl-eyebrow--light {
    color: var(--edl-icy);
    background: rgba(173, 216, 236, 0.12);
}

.edl-section-title {
    margin: 0;
    font-size: clamp(2rem, 3.6vw, 3.1rem);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--edl-graphite);
}

.edl-section-title--light {
    color: var(--edl-white);
}

.edl-section-subtitle {
    max-width: 640px;
    margin: 1rem auto 0;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--edl-muted);
}

/* Buttons */

.edl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 50px;
    padding: 0.85rem 1.7rem;
    border-radius: 999px;
    font-family: var(--font-title);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease, border-color .22s ease, color .22s ease;
}

.edl-btn i {
    font-size: 0.9rem;
}

.edl-btn--primary {
    background: var(--edl-icy);
    color: var(--edl-graphite);
    box-shadow: var(--edl-shadow-icy);
}

.edl-btn--primary:hover {
    color: var(--edl-graphite);
    background: var(--edl-icy-2);
    transform: translateY(-2px);
    box-shadow: 0 24px 50px rgba(173, 216, 236, 0.45);
}

.edl-btn--ghost {
    color: var(--edl-white);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.edl-btn--ghost:hover {
    color: var(--edl-white);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(173, 216, 236, 0.45);
    transform: translateY(-2px);
}

.edl-btn--dark {
    background: var(--edl-graphite);
    color: var(--edl-white);
}

.edl-btn--dark:hover {
    color: var(--edl-white);
    background: var(--edl-graphite-2);
    transform: translateY(-2px);
    box-shadow: var(--edl-shadow-md);
}

/* Small pill (status) */

.edl-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.9rem;
    font-family: var(--font-title);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 999px;
    margin-bottom: 1.5rem;
}

.edl-pill--dark {
    color: var(--edl-icy);
    background: rgba(173, 216, 236, 0.08);
    border: 1px solid rgba(173, 216, 236, 0.22);
}

.edl-pill__dot {
    font-size: 0.45rem !important;
    color: #6CE7B6;
    animation: edlPulse 1.8s ease-in-out infinite;
}

@keyframes edlPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.45;
        transform: scale(0.8);
    }
}


/* =========================================================
   HERO
   ========================================================= */

.edl-hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: clamp(7rem, 11vh, 9rem) 1.5rem clamp(5rem, 8vh, 7rem);
    background: var(--edl-hero-bg);
    overflow: hidden;
    isolation: isolate;
}

/* subtle conic shine */
.edl-hero::before {
    content: "";
    position: absolute;
    inset: -30%;
    background: conic-gradient(from 200deg at 80% 30%,
            transparent 0deg,
            rgba(173, 216, 236, 0.08) 40deg,
            transparent 90deg);
    filter: blur(40px);
    z-index: -1;
}

/* floating animation kept for potential reuse */
@keyframes edlFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

.edl-hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: center;
}

.edl-hero__content {
    max-width: 720px;
}

.edl-hero__title {
    margin: 0 0 1.3rem;
    font-size: clamp(2.6rem, 5.2vw, 5rem);
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.055em;
    color: var(--edl-white);
}

.edl-hero__title span {
    background: linear-gradient(90deg, var(--edl-icy) 0%, #DDEFFA 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.edl-hero__subtitle {
    max-width: 600px;
    margin: 0 0 2.2rem;
    font-size: clamp(1rem, 1.2vw, 1.08rem);
    line-height: 1.7;
    color: var(--edl-muted-light);
}

.edl-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 3rem;
}

/* hero stats — replaces awkward hero cards */
.edl-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin: 0;
    padding: 1.4rem 1.6rem;
    list-style: none;
    border-radius: var(--edl-radius);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.edl-hero__stats li {
    position: relative;
    padding-left: 1rem;
}

.edl-hero__stats li:not(:first-child)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-50%);
}

.edl-hero__stats strong {
    display: block;
    font-family: var(--font-title);
    font-size: clamp(1.5rem, 2.2vw, 1.95rem);
    font-weight: 700;
    color: var(--edl-icy);
    line-height: 1;
    margin-bottom: 0.35rem;
    letter-spacing: -0.04em;
}

.edl-hero__stats span {
    font-size: 0.78rem;
    line-height: 1.3;
    color: var(--edl-muted-light);
}

/* Hero right panel — elegant glass service stack */

.edl-hero__panel {
    position: relative;
    min-height: 460px;
}

.edl-hero__panel-glow {
    position: absolute;
    inset: -20px;
    background:
        radial-gradient(circle at 30% 20%, rgba(173, 216, 236, 0.25), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(195, 49, 73, 0.18), transparent 50%);
    filter: blur(30px);
    z-index: 0;
}

.edl-hero__panel-inner {
    position: relative;
    z-index: 1;
    padding: 2rem 1.8rem;
    border-radius: var(--edl-radius-lg);
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: var(--edl-shadow-dark);
}

.edl-hero__panel-head {
    margin-bottom: 1.5rem;
}

.edl-hero__panel-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: var(--font-title);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--edl-icy);
    margin-bottom: 0.8rem;
}

.edl-hero__panel-head h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--edl-white);
    letter-spacing: -0.03em;
}

.edl-hero__stack {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.edl-hero__stack li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.95rem 1rem;
    border-radius: var(--edl-radius-sm);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.edl-hero__stack li:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(173, 216, 236, 0.3);
    transform: translateX(4px);
}

.edl-hero__stack-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--edl-icy), var(--edl-icy-2));
    color: var(--edl-graphite);
    font-size: 1rem;
    box-shadow: 0 8px 20px rgba(173, 216, 236, 0.25);
}

.edl-hero__stack li>div {
    flex: 1;
    min-width: 0;
}

.edl-hero__stack strong {
    display: block;
    font-family: var(--font-title);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--edl-white);
    line-height: 1.2;
    margin-bottom: 0.2rem;
}

.edl-hero__stack small {
    display: block;
    font-size: 0.78rem;
    color: var(--edl-muted-light);
}

.edl-hero__stack-out {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.8rem !important;
}

.edl-hero__panel-foot {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding-top: 1.3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.edl-hero__avatars {
    display: flex;
    flex-shrink: 0;
}

.edl-hero__avatars span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4a4a4d, #2a282a);
    color: var(--edl-icy);
    font-size: 0.8rem;
    border: 2px solid var(--edl-graphite-2);
    margin-left: -8px;
}

.edl-hero__avatars span:first-child {
    margin-left: 0;
}

.edl-hero__panel-foot p {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.4;
    color: var(--edl-muted-light);
}


/* =========================================================
   TRUST TICKER
   ========================================================= */

.edl-ticker {
    position: relative;
    overflow: hidden;
    padding: 1.3rem 0;
    background: var(--edl-graphite);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* edge fade */
.edl-ticker::before,
.edl-ticker::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.edl-ticker::before {
    left: 0;
    background: linear-gradient(to right, var(--edl-graphite), transparent);
}

.edl-ticker::after {
    right: 0;
    background: linear-gradient(to left, var(--edl-graphite), transparent);
}

.edl-ticker__track {
    display: flex;
    width: max-content;
    animation: edlTicker 40s linear infinite;
}

.edl-ticker:hover .edl-ticker__track {
    animation-play-state: paused;
}

.edl-ticker__list {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin: 0;
    padding: 0 1.25rem;
    list-style: none;
}

.edl-ticker__list li {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-title);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--edl-white);
    white-space: nowrap;
}

.edl-ticker__list li>i:first-child {
    color: var(--edl-icy);
    font-size: 1rem;
}

.edl-ticker__dot {
    color: var(--edl-cherry) !important;
    font-size: 0.35rem !important;
    margin-left: 1rem;
}

@keyframes edlTicker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* =========================================================
   SERVICES
   ========================================================= */

.edl-services {
    padding: 6.5rem 1.5rem 5.5rem;
    background: var(--edl-light);
    text-align: center;
}

.edl-services__inner {
    max-width: 1180px;
    margin: 0 auto;
}

.edl-services__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.3rem;
}

.edl-service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.8rem;
    border-radius: var(--edl-radius);
    text-align: left;
    background: var(--edl-white);
    border: 1px solid var(--edl-border);
    box-shadow: var(--edl-shadow-sm);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.edl-service-card::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    height: 3px;
    background: linear-gradient(90deg, var(--edl-icy), var(--edl-cherry));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
}

.edl-service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(173, 216, 236, 0.4);
    box-shadow: var(--edl-shadow-md);
}

.edl-service-card:hover::before {
    transform: scaleX(1);
}

.edl-service-card__icon {
    position: relative;
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
    border-radius: 18px;
    color: var(--edl-graphite);
    background: linear-gradient(135deg, var(--edl-icy) 0%, var(--edl-icy-2) 100%);
    font-size: 1.3rem;
    box-shadow: 0 14px 28px rgba(173, 216, 236, 0.35);
}

.edl-service-card__icon::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 22px;
    border: 1px dashed rgba(173, 216, 236, 0.4);
    opacity: 0;
    transition: opacity .25s ease;
}

.edl-service-card:hover .edl-service-card__icon::after {
    opacity: 1;
}

.edl-service-card h3 {
    margin: 0 0 0.7rem;
    font-size: 1.2rem;
    line-height: 1.25;
    color: var(--edl-graphite);
}

.edl-service-card p {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.65;
    color: var(--edl-muted);
}

.edl-service-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.45rem;
}

.edl-service-card a {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-title);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--edl-cherry);
    text-decoration: none;
    white-space: nowrap;
    transition: gap .2s ease;
}

.edl-service-card a:hover {
    gap: 0.8rem;
    color: var(--edl-cherry-2);
}

.edl-service-card a i {
    font-size: 0.7rem;
}

.edl-service-card__price {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: baseline;
    gap: 0.22rem;
    font-size: 0.75rem;
    color: var(--edl-muted);
    white-space: nowrap;
}

.edl-service-card__price strong {
    font-family: var(--font-title);
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--edl-graphite);
    letter-spacing: -0.03em;
}

.edl-service-card__price small {
    font-size: 0.7rem;
    color: var(--edl-muted);
}


/* =========================================================
   ABOUT
   ========================================================= */

.edl-about {
    padding: 6rem 1.5rem;
    background: linear-gradient(180deg, var(--edl-light), #ffffff);
}

.edl-about__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 4rem;
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
}

/* LEFT visual — soft circular orb with floating badges */
.edl-about__visual {
    position: relative;
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* dashed orbit ring */
.edl-about__ring {
    position: absolute;
    width: 88%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    border: 1.5px dashed rgba(173, 216, 236, 0.55);
    animation: edlOrbit 50s linear infinite;
}

@keyframes edlOrbit {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* the big soft orb */
.edl-about__orb {
    position: relative;
    width: 78%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.9), rgba(173, 216, 236, 0.35) 45%, rgba(195, 49, 73, 0.12) 100%);
    box-shadow:
        inset 0 4px 30px rgba(255, 255, 255, 0.7),
        inset 0 -10px 40px rgba(195, 49, 73, 0.08),
        0 30px 80px rgba(31, 29, 31, 0.12),
        0 0 0 8px rgba(255, 255, 255, 0.6);
}

.edl-about__orb-icon {
    font-size: clamp(3.5rem, 8vw, 5.5rem);
    background: linear-gradient(135deg, var(--edl-graphite) 0%, var(--edl-cherry) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 6px 14px rgba(31, 29, 31, 0.18));
}

/* floating badges */
.edl-about__badge {
    position: absolute;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 1.35rem;
    background: var(--edl-white);
    box-shadow: 0 14px 30px rgba(31, 29, 31, 0.14);
    animation: edlBadgeFloat 6s ease-in-out infinite;
}

.edl-about__badge--rocket {
    top: 6%;
    right: 8%;
    color: var(--edl-cherry);
    animation-delay: 0s;
}

.edl-about__badge--star {
    bottom: 12%;
    left: 4%;
    color: #F6B100;
    animation-delay: 1.4s;
}

.edl-about__badge--shield {
    top: 14%;
    left: 2%;
    color: var(--edl-icy-2);
    animation-delay: 2.8s;
}

.edl-about__badge--bolt {
    bottom: 28%;
    right: 0%;
    color: var(--edl-graphite);
    background: var(--edl-icy);
    animation-delay: 4.2s;
}

@keyframes edlBadgeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* status chips (Portugal / 2019) */
.edl-about__chip {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 16px;
    background: var(--edl-white);
    box-shadow: 0 18px 40px rgba(31, 29, 31, 0.14);
}

.edl-about__chip--portugal {
    top: -8px;
    left: -8px;
}

.edl-about__chip--since {
    bottom: -8px;
    right: -8px;
}

.edl-about__chip i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 11px;
    font-size: 0.9rem;
    color: var(--edl-white);
}

.edl-about__chip--portugal i {
    background: var(--edl-cherry);
}

.edl-about__chip--since i {
    background: var(--edl-graphite);
    color: var(--edl-icy);
}

.edl-about__chip small {
    display: block;
    font-family: var(--font-title);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--edl-muted);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.edl-about__chip strong {
    display: block;
    font-family: var(--font-title);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--edl-graphite);
    line-height: 1;
}

/* RIGHT content */
.edl-about__content p:not(.edl-eyebrow) {
    margin: 1.2rem 0 0;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--edl-muted);
}

.edl-about__checks {
    list-style: none;
    margin: 1.6rem 0 1.8rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.edl-about__checks li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--edl-graphite);
}

.edl-about__checks i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--edl-icy);
    color: var(--edl-graphite);
    font-size: 0.7rem;
}


/* =========================================================
   WHY
   ========================================================= */

.edl-why {
    position: relative;
    padding: 6rem 1.5rem;
    background:
        radial-gradient(900px 500px at 80% 20%, rgba(173, 216, 236, 0.10), transparent 60%),
        radial-gradient(800px 500px at 10% 90%, rgba(195, 49, 73, 0.06), transparent 60%),
        linear-gradient(160deg, var(--edl-graphite) 0%, var(--edl-graphite-3) 100%);
    color: var(--edl-white);
    overflow: hidden;
}

.edl-why__glyph {
    position: absolute;
    right: -3rem;
    bottom: -4rem;
    font-size: 18rem;
    color: rgba(173, 216, 236, 0.04);
    pointer-events: none;
}

.edl-why__inner {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
}

.edl-why .edl-section-head {
    text-align: center;
}

.edl-why__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
}

.edl-why-item {
    padding: 2rem 1.5rem;
    border-radius: var(--edl-radius);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform .25s ease, background-color .25s ease, border-color .25s ease;
}

.edl-why-item:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(173, 216, 236, 0.3);
}

.edl-why-item__icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    border-radius: 16px;
    color: var(--edl-graphite);
    background: linear-gradient(135deg, var(--edl-icy), var(--edl-icy-2));
    font-size: 1.3rem;
    box-shadow: 0 12px 24px rgba(173, 216, 236, 0.25);
}

.edl-why-item h3 {
    margin: 0 0 0.7rem;
    font-size: 1.08rem;
    color: var(--edl-white);
}

.edl-why-item p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--edl-muted-light);
}


/* =========================================================
   PROCESS
   ========================================================= */

.edl-process {
    padding: 6rem 1.5rem;
    background: var(--edl-light);
}

.edl-process__inner {
    max-width: 1180px;
    margin: 0 auto;
}

.edl-process__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
}

.edl-process-step {
    position: relative;
    padding: 2rem 1.7rem;
    border-radius: var(--edl-radius);
    background: var(--edl-white);
    border: 1px solid var(--edl-border);
    box-shadow: var(--edl-shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease;
}

.edl-process-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--edl-shadow-md);
}

.edl-process-step__num {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.3rem;
}

.edl-process-step__num i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--edl-graphite), var(--edl-graphite-2));
    color: var(--edl-icy);
    font-size: 1.15rem;
    box-shadow: 0 8px 18px rgba(31, 29, 31, 0.18);
}

.edl-process-step__num em {
    font-style: normal;
    font-family: var(--font-title);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--edl-cherry);
}

.edl-process-step h3 {
    margin: 0 0 0.6rem;
    font-size: 1.12rem;
    color: var(--edl-graphite);
}

.edl-process-step p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--edl-muted);
}


/* =========================================================
   STORIES
   ========================================================= */

.edl-stories {
    padding: 6rem 1.5rem;
    background: var(--edl-white);
}

.edl-stories__inner {
    max-width: 1180px;
    margin: 0 auto;
}

.edl-stories__list {
    max-width: 1020px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
}

.edl-story {
    display: grid;
    grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
    gap: 1.4rem;
    padding: 1.2rem;
    border-radius: var(--edl-radius-lg);
    background: var(--edl-light);
    border: 1px solid var(--edl-border);
    transition: transform .25s ease, box-shadow .25s ease;
}

.edl-story:hover {
    transform: translateY(-4px);
    box-shadow: var(--edl-shadow-md);
}

/* Replaces empty rectangles — branded preview tile */
.edl-story__visual {
    position: relative;
    min-height: 240px;
    border-radius: var(--edl-radius);
    padding: 1.4rem;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 20%, rgba(173, 216, 236, 0.32), transparent 50%),
        linear-gradient(155deg, var(--edl-graphite) 0%, var(--edl-graphite-3) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.edl-story__visual--alt {
    background:
        radial-gradient(circle at 80% 25%, rgba(195, 49, 73, 0.30), transparent 50%),
        linear-gradient(155deg, var(--edl-graphite-2) 0%, var(--edl-graphite-3) 100%);
}

.edl-story__tag {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    align-self: flex-start;
    padding: 0.4rem 0.8rem;
    font-family: var(--font-title);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--edl-icy);
    background: rgba(173, 216, 236, 0.12);
    border: 1px solid rgba(173, 216, 236, 0.25);
    border-radius: 999px;
}

.edl-story__bigicon {
    position: absolute;
    top: 50%;
    right: -1.5rem;
    transform: translateY(-50%);
    font-size: 11rem;
    color: rgba(255, 255, 255, 0.05);
    pointer-events: none;
    z-index: 0;
}

.edl-story__brand {
    position: relative;
    z-index: 1;
    font-family: var(--font-title);
    color: var(--edl-white);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.edl-story__brand span {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
}

.edl-story__brand strong {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--edl-icy);
}

.edl-story__content {
    padding: 1rem 1rem 1rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.edl-story h3 {
    margin: 0 0 0.7rem;
    font-size: 1.4rem;
    color: var(--edl-graphite);
}

.edl-story__content>p {
    margin: 0 0 1.2rem;
    font-size: 0.96rem;
    line-height: 1.7;
    color: var(--edl-muted);
}

.edl-story ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.edl-story ul li {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.7rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--edl-graphite);
    background: var(--edl-white);
    border: 1px solid var(--edl-border);
    border-radius: 999px;
}

.edl-story ul li i {
    color: var(--edl-cherry);
    font-size: 0.7rem;
}

/* alt direction */
.edl-story--alt .edl-story__content {
    padding: 1rem 0 1rem 1rem;
    text-align: left;
}


/* =========================================================
   TESTIMONIAL
   ========================================================= */

.edl-testimonial {
    padding: 6rem 1.5rem;
    background:
        radial-gradient(600px 400px at 50% 0%, rgba(173, 216, 236, 0.30), transparent 60%),
        var(--edl-light);
    text-align: center;
}

.edl-testimonial__inner {
    max-width: 760px;
    margin: 0 auto;
}

.edl-testimonial__quote {
    font-size: 3rem;
    color: var(--edl-cherry);
    margin-bottom: 1rem;
    opacity: 0.85;
}

.edl-testimonial__text {
    margin: 0 0 2rem;
    font-size: clamp(1.15rem, 1.8vw, 1.4rem);
    line-height: 1.55;
    font-weight: 500;
    color: var(--edl-graphite);
    letter-spacing: -0.01em;
}

.edl-testimonial__author {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.2rem;
    text-align: left;
}

.edl-testimonial__avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--edl-graphite), var(--edl-graphite-2));
    color: var(--edl-icy);
    font-size: 1.1rem;
    box-shadow: var(--edl-shadow-md);
}

.edl-testimonial__author strong {
    display: block;
    font-family: var(--font-title);
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--edl-graphite);
}

.edl-testimonial__author small {
    font-size: 0.78rem;
    color: var(--edl-muted);
}

.edl-testimonial__stars {
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    color: #F6B100;
}

.edl-testimonial__stars i {
    font-size: 0.95rem;
}


/* =========================================================
   FAQ
   ========================================================= */

.edl-faq {
    position: relative;
    padding: 6rem 1.5rem;
    background:
        radial-gradient(800px 500px at 15% 10%, rgba(173, 216, 236, 0.10), transparent 60%),
        radial-gradient(700px 400px at 90% 90%, rgba(195, 49, 73, 0.08), transparent 60%),
        linear-gradient(160deg, var(--edl-graphite) 0%, var(--edl-graphite-3) 100%);
    color: var(--edl-white);
    overflow: hidden;
}

.edl-faq__glyph {
    position: absolute;
    left: -3rem;
    bottom: -4rem;
    font-size: 18rem;
    color: rgba(173, 216, 236, 0.04);
    pointer-events: none;
}

.edl-faq__inner {
    position: relative;
    z-index: 1;
    max-width: 840px;
    margin: 0 auto;
}

.edl-faq .edl-section-head {
    text-align: center;
}

.edl-faq__list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.edl-faq-item {
    border-radius: var(--edl-radius);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background-color .2s ease, border-color .2s ease;
}

.edl-faq-item:hover {
    background: rgba(255, 255, 255, 0.07);
}

.edl-faq-item[open] {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(173, 216, 236, 0.25);
}

.edl-faq-item summary {
    position: relative;
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 3.4rem 1.2rem 1.3rem;
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 600;
    color: var(--edl-white);
}

.edl-faq-item summary::-webkit-details-marker {
    display: none;
}

.edl-faq-item summary>i:first-child {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(173, 216, 236, 0.12);
    color: var(--edl-icy);
    font-size: 0.95rem;
}

.edl-faq-item summary>span {
    flex: 1;
}

.edl-faq-item summary::after {
    content: "\f067";
    /* fa-plus */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--edl-icy);
    color: var(--edl-graphite);
    font-size: 0.7rem;
    transition: transform .25s ease, background-color .25s ease;
}

.edl-faq-item[open] summary::after {
    content: "\f068";
    /* fa-minus */
    background: var(--edl-cherry);
    color: var(--edl-white);
    transform: translateY(-50%) rotate(180deg);
}

.edl-faq-item>div {
    padding: 0 1.3rem 1.3rem 4.6rem;
}

.edl-faq-item p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--edl-muted-light);
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.edl-final-cta {
    padding: 6rem 1.5rem;
    background:
        radial-gradient(800px 400px at 50% 0%, rgba(173, 216, 236, 0.28), transparent 60%),
        var(--edl-white);
}

.edl-final-cta__inner {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
    padding: 4.5rem 2.5rem;
    border-radius: var(--edl-radius-lg);
    text-align: center;
    background:
        radial-gradient(circle at 15% 10%, rgba(173, 216, 236, 0.18), transparent 50%),
        radial-gradient(circle at 85% 90%, rgba(195, 49, 73, 0.18), transparent 50%),
        linear-gradient(155deg, var(--edl-graphite) 0%, var(--edl-graphite-3) 100%);
    color: var(--edl-white);
    box-shadow: var(--edl-shadow-lg);
    overflow: hidden;
}

.edl-final-cta__shine {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: linear-gradient(115deg, transparent 40%, rgba(173, 216, 236, 0.08) 50%, transparent 60%);
    pointer-events: none;
}

.edl-final-cta h2 {
    max-width: 720px;
    margin: 0 auto 1rem;
    font-size: clamp(2rem, 3.5vw, 2.95rem);
    line-height: 1.1;
    letter-spacing: -0.045em;
    color: var(--edl-white);
}

.edl-final-cta__lead {
    max-width: 580px;
    margin: 0 auto 2rem;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--edl-muted-light);
}

.edl-final-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1024px) {

    .edl-hero__inner,
    .edl-about__inner {
        grid-template-columns: 1fr;
    }

    .edl-hero {
        min-height: auto;
    }

    .edl-hero__panel {
        min-height: auto;
        max-width: 520px;
        margin: 0 auto;
    }

    .edl-services__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .edl-why__grid,
    .edl-process__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .edl-about__visual {
        max-width: 420px;
    }
}

@media (max-width: 768px) {
    .edl-hero {
        padding-top: 6.5rem;
        padding-bottom: 4rem;
    }

    .edl-hero__title {
        font-size: clamp(2.4rem, 11vw, 3.6rem);
    }

    .edl-hero__stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.2rem;
    }

    .edl-hero__stats li {
        padding-left: 0;
        padding-top: 1rem;
    }

    .edl-hero__stats li:not(:first-child)::before {
        top: 0;
        left: 0;
        width: 32px;
        height: 1px;
        transform: none;
    }

    .edl-story,
    .edl-story--alt {
        grid-template-columns: 1fr;
    }

    .edl-story--alt .edl-story__visual {
        order: -1;
    }

    .edl-story--alt .edl-story__content {
        padding: 0.5rem 0.5rem 1rem;
    }

    .edl-story__content {
        padding: 0.5rem 0.5rem 1rem;
    }

    .edl-final-cta__inner {
        padding: 3rem 1.5rem;
    }

    .edl-faq-item>div {
        padding-left: 1.3rem;
    }
}

@media (max-width: 640px) {

    .edl-hero,
    .edl-services,
    .edl-about,
    .edl-why,
    .edl-process,
    .edl-stories,
    .edl-testimonial,
    .edl-faq,
    .edl-final-cta {
        padding-left: 1.1rem;
        padding-right: 1.1rem;
    }

    .edl-services__grid,
    .edl-why__grid,
    .edl-process__grid {
        grid-template-columns: 1fr;
    }

    .edl-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .edl-hero__actions .edl-btn {
        width: 100%;
    }

    .edl-about__visual {
        max-width: 340px;
    }

    .edl-about__chip {
        padding: 0.55rem 0.75rem;
    }

    .edl-about__chip i {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .edl-about__chip--portugal {
        top: -4px;
        left: -4px;
    }

    .edl-about__chip--since {
        bottom: -4px;
        right: -4px;
    }

    .edl-about__badge {
        width: 46px;
        height: 46px;
        font-size: 1.05rem;
    }

    .edl-final-cta__actions .edl-btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {

    .edl-ticker__track,
    .edl-pill__dot,
    .edl-about__ring,
    .edl-about__badge {
        animation: none !important;
    }
}



/* =========================================================
   ELIASSDEVLAND — SERVICE PAGES
   Append to front-page.css
   All classes are prefixed edl-sp- (service page)
   Reuses all root variables, buttons, eyebrows, section-titles
   ========================================================= */

/* =========================================================
   SERVICE PAGE WRAPPER
   ========================================================= */

.edl-service-page {
    background: var(--edl-light);
    overflow: hidden;
}

.edl-service-page h1,
.edl-service-page h2,
.edl-service-page h3,
.edl-service-page h4,
.edl-service-page h5,
.edl-service-page h6 {
    font-family: var(--font-title) !important;
}


/* =========================================================
   SP HERO — compact, dark, just the title + breadcrumb
   ========================================================= */

.edl-sp-hero {
    position: relative;
    padding: clamp(5.5rem, 9vh, 7rem) 1.5rem clamp(3.5rem, 6vh, 5rem);
    background:
        radial-gradient(900px 400px at 80% 0%, rgba(173, 216, 236, 0.13), transparent 55%),
        radial-gradient(700px 350px at 10% 100%, rgba(195, 49, 73, 0.07), transparent 55%),
        linear-gradient(160deg, var(--edl-graphite) 0%, var(--edl-graphite-2) 55%, var(--edl-graphite-3) 100%);
    overflow: hidden;
    isolation: isolate;
}

/* same conic shine as homepage hero */
.edl-sp-hero::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: conic-gradient(from 220deg at 75% 40%,
            transparent 0deg,
            rgba(173, 216, 236, 0.06) 50deg,
            transparent 100deg);
    filter: blur(50px);
    z-index: -1;
    pointer-events: none;
}

/* decorative large icon watermark */
.edl-sp-hero__watermark {
    position: absolute;
    right: 4vw;
    top: 50%;
    transform: translateY(-50%);
    font-size: clamp(7rem, 16vw, 14rem);
    color: rgba(173, 216, 236, 0.06);
    z-index: 0;
    pointer-events: none;
    line-height: 1;
}

.edl-sp-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
}

/* breadcrumb */
.edl-sp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1.6rem;
    font-family: var(--font-title);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.edl-sp-breadcrumb a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color .2s ease;
}

.edl-sp-breadcrumb a:hover {
    color: var(--edl-icy);
}

.edl-sp-breadcrumb i {
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.25);
}

.edl-sp-breadcrumb span:last-child {
    color: var(--edl-icy);
}

/* service category pill */
.edl-sp-hero .edl-eyebrow {
    margin-bottom: 1.2rem;
}

/* hero title */
.edl-sp-hero__title {
    margin: 0 0 1.1rem;
    font-size: clamp(2.4rem, 4.5vw, 4.2rem);
    line-height: 1.04;
    font-weight: 700;
    letter-spacing: -0.05em;
    color: var(--edl-white);
    max-width: 820px;
}

.edl-sp-hero__title span {
    background: linear-gradient(90deg, var(--edl-icy) 0%, #DDEFFA 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* tagline under title */
.edl-sp-hero__tagline {
    margin: 0 0 2rem;
    max-width: 580px;
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    line-height: 1.65;
    color: var(--edl-muted-light);
}

/* price badge in hero */
.edl-sp-hero__price {
    display: inline-flex;
    align-items: baseline;
    gap: 0.35rem;
    padding: 0.65rem 1.1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-family: var(--font-title);
    font-size: 0.8rem;
    color: var(--edl-muted-light);
}

.edl-sp-hero__price strong {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--edl-icy);
    letter-spacing: -0.04em;
}

.edl-sp-hero__price small {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
}

.edl-sp-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}


/* =========================================================
   SP OVERVIEW — icon + intro + 3 stats
   ========================================================= */

.edl-sp-overview {
    padding: 5.5rem 1.5rem;
    background: var(--edl-white);
}

.edl-sp-overview__inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(3rem, 6vw, 5rem);
    align-items: center;
}

/* left: large icon orb */
.edl-sp-overview__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    max-width: 320px;
    margin: 0 auto;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.95), rgba(173, 216, 236, 0.30) 50%, rgba(195, 49, 73, 0.08) 100%);
    box-shadow:
        inset 0 4px 30px rgba(255, 255, 255, 0.8),
        0 30px 80px rgba(31, 29, 31, 0.10),
        0 0 0 12px rgba(173, 216, 236, 0.10),
        0 0 0 24px rgba(173, 216, 236, 0.05);
    font-size: clamp(4rem, 8vw, 6rem);
    color: var(--edl-graphite);
}

.edl-sp-overview__icon i {
    background: linear-gradient(135deg, var(--edl-graphite) 0%, var(--edl-cherry) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 12px rgba(31, 29, 31, 0.15));
}

/* right: text + stats */
.edl-sp-overview__content>p {
    font-size: 1.08rem;
    line-height: 1.78;
    color: var(--edl-muted);
    margin: 0 0 2.5rem;
}

.edl-sp-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.edl-sp-stat {
    padding: 1.3rem 1rem;
    border-radius: var(--edl-radius);
    background: var(--edl-light);
    border: 1px solid var(--edl-border);
    text-align: center;
}

.edl-sp-stat strong {
    display: block;
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--edl-graphite);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.edl-sp-stat span {
    font-size: 0.78rem;
    line-height: 1.35;
    color: var(--edl-muted);
}


/* =========================================================
   SP FEATURES — what's included
   ========================================================= */

.edl-sp-features {
    padding: 5.5rem 1.5rem;
    background: var(--edl-light);
}

.edl-sp-features__inner {
    max-width: 1180px;
    margin: 0 auto;
}

.edl-sp-features__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

.edl-sp-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    padding: 1.5rem 1.4rem;
    border-radius: var(--edl-radius);
    background: var(--edl-white);
    border: 1px solid var(--edl-border);
    box-shadow: var(--edl-shadow-sm);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.edl-sp-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--edl-shadow-md);
    border-color: rgba(173, 216, 236, 0.5);
}

.edl-sp-feature__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--edl-icy), var(--edl-icy-2));
    color: var(--edl-graphite);
    box-shadow: 0 10px 22px rgba(173, 216, 236, 0.3);
}

.edl-sp-feature__body {
    min-width: 0;
}

.edl-sp-feature__body h3 {
    margin: 0 0 0.4rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--edl-graphite);
    line-height: 1.25;
}

.edl-sp-feature__body p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.62;
    color: var(--edl-muted);
}


/* =========================================================
   SP PROCESS — how it works (3 steps)
   ========================================================= */

.edl-sp-process {
    padding: 5.5rem 1.5rem;
    background: var(--edl-white);
}

.edl-sp-process__inner {
    max-width: 1180px;
    margin: 0 auto;
}

.edl-sp-process__steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
    margin-top: 3rem;
    position: relative;
}

/* connector line between steps */
.edl-sp-process__steps::before {
    content: "";
    position: absolute;
    top: 2.8rem;
    left: calc(16.67% + 1rem);
    right: calc(16.67% + 1rem);
    height: 1px;
    background: linear-gradient(90deg,
            var(--edl-icy) 0%,
            rgba(173, 216, 236, 0.4) 50%,
            var(--edl-icy) 100%);
    z-index: 0;
}

.edl-sp-step {
    position: relative;
    z-index: 1;
    padding: 2rem 1.6rem;
    border-radius: var(--edl-radius);
    background: var(--edl-light);
    border: 1px solid var(--edl-border);
    text-align: center;
    transition: transform .22s ease, box-shadow .22s ease;
}

.edl-sp-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--edl-shadow-md);
}

.edl-sp-step__num {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 1.3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--edl-graphite), var(--edl-graphite-2));
    box-shadow: 0 12px 28px rgba(31, 29, 31, 0.18), 0 0 0 6px var(--edl-light);
}

.edl-sp-step__num i {
    font-size: 1.2rem;
    color: var(--edl-icy);
}

.edl-sp-step__num em {
    position: absolute;
    top: -6px;
    right: -6px;
    font-style: normal;
    font-family: var(--font-title);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--edl-white);
    background: var(--edl-cherry);
    border-radius: 999px;
    padding: 0.18rem 0.42rem;
}

.edl-sp-step h3 {
    margin: 0 0 0.6rem;
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--edl-graphite);
}

.edl-sp-step p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.62;
    color: var(--edl-muted);
}


/* =========================================================
   SP AUDIENCE — who is this for
   ========================================================= */

.edl-sp-audience {
    padding: 5.5rem 1.5rem;
    background: var(--edl-light);
}

.edl-sp-audience__inner {
    max-width: 1180px;
    margin: 0 auto;
}

.edl-sp-audience__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
    margin-top: 3rem;
}

.edl-sp-audience-card {
    padding: 1.8rem 1.5rem;
    border-radius: var(--edl-radius);
    background: var(--edl-white);
    border: 1px solid var(--edl-border);
    box-shadow: var(--edl-shadow-sm);
    position: relative;
    overflow: hidden;
    transition: transform .22s ease, border-color .22s ease;
}

.edl-sp-audience-card::after {
    content: "";
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--edl-icy-soft);
    transition: transform .25s ease;
}

.edl-sp-audience-card:hover {
    transform: translateY(-4px);
    border-color: rgba(173, 216, 236, 0.5);
}

.edl-sp-audience-card:hover::after {
    transform: scale(1.4);
}

.edl-sp-audience-card__icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 1.25rem;
    margin-bottom: 1.2rem;
    background: linear-gradient(135deg, var(--edl-graphite), var(--edl-graphite-2));
    color: var(--edl-icy);
    box-shadow: 0 10px 22px rgba(31, 29, 31, 0.14);
}

.edl-sp-audience-card h3 {
    margin: 0 0 0.55rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--edl-graphite);
}

.edl-sp-audience-card p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.62;
    color: var(--edl-muted);
}


/* =========================================================
   SP CTA BAND — book a consultation
   ========================================================= */

.edl-sp-cta {
    position: relative;
    padding: 5.5rem 1.5rem;
    overflow: hidden;
    background:
        radial-gradient(900px 450px at 15% 10%, rgba(173, 216, 236, 0.16), transparent 60%),
        radial-gradient(700px 350px at 85% 90%, rgba(195, 49, 73, 0.18), transparent 60%),
        linear-gradient(160deg, var(--edl-graphite) 0%, var(--edl-graphite-3) 100%);
}

/* subtle shine sweep */
.edl-sp-cta::before {
    content: "";
    position: absolute;
    top: -60%;
    left: -20%;
    width: 70%;
    height: 220%;
    background: linear-gradient(115deg,
            transparent 40%,
            rgba(173, 216, 236, 0.06) 50%,
            transparent 60%);
    pointer-events: none;
}

.edl-sp-cta__inner {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.edl-sp-cta__inner>p:not(.edl-eyebrow) {
    margin: 0 auto 2rem;
    max-width: 580px;
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--edl-muted-light);
}

.edl-sp-cta h2 {
    margin: 0 auto 1rem;
    max-width: 700px;
    font-size: clamp(1.9rem, 3.2vw, 2.8rem);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.045em;
    color: var(--edl-white);
}

.edl-sp-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

/* trust note below buttons */
.edl-sp-cta__trust {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.edl-sp-cta__trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
}

.edl-sp-cta__trust-item i {
    color: var(--edl-icy);
    font-size: 0.75rem;
}


/* =========================================================
   SP FAQ — reuses dark style, service-specific questions
   ========================================================= */

.edl-sp-faq {
    position: relative;
    padding: 5.5rem 1.5rem;
    background:
        radial-gradient(700px 400px at 85% 10%, rgba(173, 216, 236, 0.08), transparent 55%),
        var(--edl-graphite-2);
    overflow: hidden;
}

.edl-sp-faq__glyph {
    position: absolute;
    right: -2rem;
    bottom: -3rem;
    font-size: 14rem;
    color: rgba(173, 216, 236, 0.04);
    pointer-events: none;
}

.edl-sp-faq__inner {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto;
}

/* reuse homepage faq item styles (already defined in front-page.css) */
/* Just need the section and heading overrides */
.edl-sp-faq .edl-section-head {
    text-align: center;
}

/* =========================================================
   SP OTHER SERVICES — cross-sell at the bottom
   ========================================================= */

.edl-sp-others {
    padding: 5.5rem 1.5rem;
    background: var(--edl-white);
}

.edl-sp-others__inner {
    max-width: 1180px;
    margin: 0 auto;
}

.edl-sp-others__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

.edl-sp-other-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.3rem 1.4rem;
    border-radius: var(--edl-radius);
    background: var(--edl-light);
    border: 1px solid var(--edl-border);
    text-decoration: none;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.edl-sp-other-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--edl-shadow-md);
    border-color: rgba(173, 216, 236, 0.5);
}

.edl-sp-other-card__icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    font-size: 1.05rem;
    background: linear-gradient(135deg, var(--edl-icy), var(--edl-icy-2));
    color: var(--edl-graphite);
    box-shadow: 0 8px 18px rgba(173, 216, 236, 0.28);
}

.edl-sp-other-card__body {
    min-width: 0;
}

.edl-sp-other-card__body strong {
    display: block;
    font-family: var(--font-title);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--edl-graphite);
    margin-bottom: 0.22rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.edl-sp-other-card__body span {
    font-size: 0.8rem;
    color: var(--edl-cherry);
    font-weight: 600;
}

.edl-sp-other-card .edl-sp-other-card__arrow {
    margin-left: auto;
    flex-shrink: 0;
    color: rgba(47, 45, 46, 0.25);
    font-size: 0.8rem;
    transition: color .2s ease, transform .2s ease;
}

.edl-sp-other-card:hover .edl-sp-other-card__arrow {
    color: var(--edl-cherry);
    transform: translateX(3px);
}


/* =========================================================
   RESPONSIVE — SERVICE PAGES
   ========================================================= */

@media (max-width: 1024px) {
    .edl-sp-overview__inner {
        grid-template-columns: 1fr;
    }

    .edl-sp-overview__icon {
        max-width: 240px;
    }

    .edl-sp-process__steps {
        grid-template-columns: 1fr;
    }

    .edl-sp-process__steps::before {
        display: none;
    }

    .edl-sp-audience__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .edl-sp-others__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .edl-sp-hero {
        padding-top: 6rem;
    }

    .edl-sp-hero__title {
        font-size: clamp(2.1rem, 9vw, 3rem);
    }

    .edl-sp-hero__watermark {
        display: none;
    }

    .edl-sp-features__grid {
        grid-template-columns: 1fr;
    }

    .edl-sp-stats {
        grid-template-columns: 1fr;
        gap: 0.65rem;
    }

    .edl-sp-audience__grid,
    .edl-sp-others__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {

    .edl-sp-hero,
    .edl-sp-overview,
    .edl-sp-features,
    .edl-sp-process,
    .edl-sp-audience,
    .edl-sp-cta,
    .edl-sp-faq,
    .edl-sp-others {
        padding-left: 1.1rem;
        padding-right: 1.1rem;
    }

    .edl-sp-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .edl-sp-hero__actions .edl-btn {
        width: 100%;
    }

    .edl-sp-cta__actions .edl-btn {
        width: 100%;
    }

    .edl-sp-step {
        text-align: left;
    }
}

/* =========================================================
   ELIASSDEVLAND — ABOUT PAGE
   Append after service-page.css
   All classes prefixed edl-ap-
   ========================================================= */

/* =========================================================
   ABOUT PAGE WRAPPER
   ========================================================= */

.edl-about-page {
    background: var(--edl-light);
    overflow: hidden;
}

.edl-about-page h1,
.edl-about-page h2,
.edl-about-page h3,
.edl-about-page h4 {
    font-family: var(--font-title) !important;
}


/* =========================================================
   AP HERO — compact dark, same family as service pages
   ========================================================= */

.edl-ap-hero {
    position: relative;
    padding: clamp(5.5rem, 9vh, 7.5rem) 1.5rem clamp(4rem, 7vh, 5.5rem);
    background:
        radial-gradient(1100px 500px at 70% 0%, rgba(173, 216, 236, 0.14), transparent 55%),
        radial-gradient(700px 400px at 5% 100%, rgba(195, 49, 73, 0.08), transparent 55%),
        linear-gradient(160deg, var(--edl-graphite) 0%, var(--edl-graphite-2) 55%, var(--edl-graphite-3) 100%);
    overflow: hidden;
    isolation: isolate;
}

.edl-ap-hero::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: conic-gradient(from 210deg at 72% 38%,
            transparent 0deg,
            rgba(173, 216, 236, 0.07) 50deg,
            transparent 100deg);
    filter: blur(50px);
    z-index: -1;
    pointer-events: none;
}

.edl-ap-hero__watermark {
    position: absolute;
    right: 4vw;
    top: 50%;
    transform: translateY(-50%);
    font-size: clamp(8rem, 18vw, 16rem);
    color: rgba(173, 216, 236, 0.055);
    z-index: 0;
    pointer-events: none;
    line-height: 1;
}

.edl-ap-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
}

.edl-ap-hero__title {
    margin: 0 0 1.1rem;
    font-size: clamp(2.5rem, 4.8vw, 4.5rem);
    line-height: 1.04;
    font-weight: 700;
    letter-spacing: -0.05em;
    color: var(--edl-white);
    max-width: 900px;
}

.edl-ap-hero__title span {
    background: linear-gradient(90deg, var(--edl-icy) 0%, #DDEFFA 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.edl-ap-hero__tagline {
    margin: 0;
    max-width: 600px;
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    line-height: 1.65;
    color: var(--edl-muted-light);
}


/* =========================================================
   AP STORY — founder / brand narrative
   ========================================================= */

.edl-ap-story {
    padding: 6rem 1.5rem;
    background: var(--edl-white);
}

.edl-ap-story__inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(3rem, 6vw, 5.5rem);
    align-items: center;
}

/* ---- left visual ---- */
.edl-ap-story__visual {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* slow rotating dashed ring */
.edl-ap-story__ring {
    position: absolute;
    width: 86%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    border: 1.5px dashed rgba(195, 49, 73, 0.3);
    animation: edlOrbitSlow 60s linear infinite;
}

@keyframes edlOrbitSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* the gradient orb */
.edl-ap-story__orb {
    position: relative;
    width: 74%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 28% 22%,
            rgba(255, 255, 255, 0.95),
            rgba(173, 216, 236, 0.28) 45%,
            rgba(195, 49, 73, 0.10) 100%);
    box-shadow:
        inset 0 4px 30px rgba(255, 255, 255, 0.75),
        inset 0 -8px 30px rgba(195, 49, 73, 0.06),
        0 30px 80px rgba(31, 29, 31, 0.10),
        0 0 0 8px rgba(255, 255, 255, 0.55);
}

.edl-ap-story__orb-icon {
    font-size: clamp(3.5rem, 7.5vw, 5.5rem);
    background: linear-gradient(135deg, var(--edl-graphite) 20%, var(--edl-cherry) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 10px rgba(31, 29, 31, 0.14));
}

/* info chips anchored to corners */
.edl-ap-chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.7rem 0.95rem;
    border-radius: 16px;
    background: var(--edl-white);
    box-shadow: 0 16px 36px rgba(31, 29, 31, 0.12);
    z-index: 2;
}

.edl-ap-chip--founded {
    top: -10px;
    left: -10px;
}

.edl-ap-chip--location {
    bottom: -10px;
    right: -10px;
}

.edl-ap-chip__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 11px;
    font-size: 0.9rem;
    color: var(--edl-white);
    flex-shrink: 0;
}

.edl-ap-chip--founded .edl-ap-chip__icon {
    background: var(--edl-cherry);
}

.edl-ap-chip--location .edl-ap-chip__icon {
    background: var(--edl-graphite);
    color: var(--edl-icy);
}

.edl-ap-chip small {
    display: block;
    font-family: var(--font-title);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--edl-muted);
    line-height: 1;
    margin-bottom: 0.28rem;
}

.edl-ap-chip strong {
    display: block;
    font-family: var(--font-title);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--edl-graphite);
    line-height: 1;
}

/* floating icon badges around the orb */
.edl-ap-badge {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.85rem;
    border-radius: 999px;
    background: var(--edl-white);
    box-shadow: 0 12px 26px rgba(31, 29, 31, 0.12);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--edl-graphite);
    font-family: var(--font-title);
    white-space: nowrap;
    line-height: 1.25;
}

.edl-ap-badge i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 9px;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.edl-ap-badge--exp {
    top: 14%;
    right: -6%;
    animation: edlBadgeBob 7s ease-in-out infinite;
}

.edl-ap-badge--exp i {
    background: var(--edl-icy);
    color: var(--edl-graphite);
}

.edl-ap-badge--reg {
    bottom: 18%;
    left: -4%;
    animation: edlBadgeBob 8.5s ease-in-out infinite reverse;
}

.edl-ap-badge--reg i {
    background: linear-gradient(135deg, var(--edl-graphite), var(--edl-graphite-2));
    color: var(--edl-icy);
}

@keyframes edlBadgeBob {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}

/* ---- right content ---- */
.edl-ap-story__lead {
    margin: 1.2rem 0 1rem;
    font-size: 1.15rem;
    line-height: 1.7;
    font-weight: 500;
    color: var(--edl-graphite);
    letter-spacing: -0.01em;
}

.edl-ap-story__content p:not(.edl-eyebrow):not(.edl-ap-story__lead) {
    margin: 0.95rem 0 0;
    font-size: 1rem;
    line-height: 1.76;
    color: var(--edl-muted);
}

.edl-ap-story__pillars {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    margin-top: 1.8rem;
}

.edl-ap-pillar {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 0.85rem;
    border-radius: 12px;
    background: var(--edl-light);
    border: 1px solid var(--edl-border);
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--edl-graphite);
    line-height: 1.3;
}

.edl-ap-pillar i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--edl-icy);
    color: var(--edl-graphite);
    font-size: 0.62rem;
}


/* =========================================================
   AP NUMBERS — stat strip
   ========================================================= */

.edl-ap-numbers {
    background: var(--edl-graphite);
    padding: 3rem 1.5rem;
}

.edl-ap-numbers__inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.edl-ap-number {
    flex: 1;
    min-width: 140px;
    text-align: center;
    padding: 1rem 1.5rem;
}

.edl-ap-number strong {
    display: block;
    font-family: var(--font-title);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--edl-icy);
    letter-spacing: -0.05em;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.edl-ap-number span {
    font-size: 0.8rem;
    color: var(--edl-muted-light);
    line-height: 1.3;
}

.edl-ap-number__divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}


/* =========================================================
   AP VALUES — dark section
   ========================================================= */

.edl-ap-values {
    position: relative;
    padding: 6rem 1.5rem;
    background:
        radial-gradient(900px 450px at 15% 10%, rgba(173, 216, 236, 0.10), transparent 60%),
        radial-gradient(700px 350px at 85% 90%, rgba(195, 49, 73, 0.08), transparent 60%),
        linear-gradient(160deg, var(--edl-graphite) 0%, var(--edl-graphite-3) 100%);
    overflow: hidden;
    text-align: center;
}

.edl-ap-values__inner {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
}

.edl-ap-values__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
    margin-top: 3rem;
}

.edl-ap-value {
    padding: 2rem 1.5rem;
    border-radius: var(--edl-radius);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    text-align: left;
    transition: transform .22s ease, background-color .22s ease, border-color .22s ease;
}

.edl-ap-value:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(173, 216, 236, 0.28);
}

.edl-ap-value__icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    border-radius: 16px;
    font-size: 1.25rem;
    background: linear-gradient(135deg, var(--edl-icy), var(--edl-icy-2));
    color: var(--edl-graphite);
    box-shadow: 0 10px 22px rgba(173, 216, 236, 0.22);
}

.edl-ap-value h3 {
    margin: 0 0 0.65rem;
    font-size: 1.06rem;
    font-weight: 700;
    color: var(--edl-white);
}

.edl-ap-value p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--edl-muted-light);
}


/* =========================================================
   AP SERVICES — all 6 services compact list
   ========================================================= */

.edl-ap-services {
    padding: 6rem 1.5rem;
    background: var(--edl-light);
}

.edl-ap-services__inner {
    max-width: 1180px;
    margin: 0 auto;
}

.edl-ap-services__grid {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 3rem;
}

.edl-ap-service-item {
    display: flex;
    align-items: center;
    gap: 1.3rem;
    padding: 1.35rem 1.5rem;
    border-radius: var(--edl-radius);
    background: var(--edl-white);
    border: 1px solid var(--edl-border);
    box-shadow: var(--edl-shadow-sm);
    text-decoration: none;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.edl-ap-service-item:hover {
    transform: translateX(6px);
    box-shadow: var(--edl-shadow-md);
    border-color: rgba(173, 216, 236, 0.5);
}

.edl-ap-service-item__icon {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 1.2rem;
    background: linear-gradient(135deg, var(--edl-icy), var(--edl-icy-2));
    color: var(--edl-graphite);
    box-shadow: 0 10px 22px rgba(173, 216, 236, 0.28);
}

.edl-ap-service-item__body {
    flex: 1;
    min-width: 0;
}

.edl-ap-service-item__body h3 {
    margin: 0 0 0.25rem;
    font-family: var(--font-title);
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--edl-graphite);
    line-height: 1.2;
}

.edl-ap-service-item__body p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--edl-muted);
}

.edl-ap-service-item__price {
    flex-shrink: 0;
    font-family: var(--font-title);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--edl-graphite);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: var(--edl-light);
    border: 1px solid var(--edl-border);
    white-space: nowrap;
}

.edl-ap-service-item__arrow {
    flex-shrink: 0;
    color: rgba(47, 45, 46, 0.22);
    font-size: 0.85rem;
    transition: color .2s ease, transform .2s ease;
}

.edl-ap-service-item:hover .edl-ap-service-item__arrow {
    color: var(--edl-cherry);
    transform: translateX(4px);
}


/* =========================================================
   AP LEGAL — company registration details
   ========================================================= */

.edl-ap-legal {
    padding: 6rem 1.5rem;
    background: var(--edl-white);
}

.edl-ap-legal__inner {
    max-width: 1180px;
    margin: 0 auto;
}

.edl-ap-legal__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

.edl-ap-legal-card {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    padding: 1.5rem 1.4rem;
    border-radius: var(--edl-radius);
    background: var(--edl-light);
    border: 1px solid var(--edl-border);
    box-shadow: var(--edl-shadow-sm);
}

.edl-ap-legal-card__icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 1.05rem;
    background: linear-gradient(135deg, var(--edl-graphite), var(--edl-graphite-2));
    color: var(--edl-icy);
    box-shadow: 0 8px 18px rgba(31, 29, 31, 0.14);
}

.edl-ap-legal-card__body {
    min-width: 0;
}

.edl-ap-legal-card__body small {
    display: block;
    font-family: var(--font-title);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--edl-muted);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.edl-ap-legal-card__body strong {
    display: block;
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 700;
    color: var(--edl-graphite);
    line-height: 1.4;
}

.edl-ap-legal-card--link .edl-ap-legal-card__body strong a {
    color: var(--edl-graphite);
    text-decoration: none;
    transition: color .2s ease;
}

.edl-ap-legal-card--link .edl-ap-legal-card__body strong a:hover {
    color: var(--edl-cherry);
}

.edl-ap-legal-card--link .edl-ap-legal-card__icon {
    background: linear-gradient(135deg, var(--edl-cherry), var(--edl-cherry-2));
    color: var(--edl-white);
}

/* WhatsApp gets a green tint */
.edl-ap-legal-card:last-child .edl-ap-legal-card__icon {
    background: linear-gradient(135deg, #25D366, #1aab52);
    color: var(--edl-white);
}


/* =========================================================
   RESPONSIVE — ABOUT PAGE
   ========================================================= */

@media (max-width: 1024px) {
    .edl-ap-story__inner {
        grid-template-columns: 1fr;
    }

    .edl-ap-story__visual {
        max-width: 380px;
    }

    .edl-ap-values__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .edl-ap-numbers__inner {
        gap: 0;
    }
}

@media (max-width: 768px) {
    .edl-ap-hero {
        padding-top: 6rem;
    }

    .edl-ap-hero__title {
        font-size: clamp(2.2rem, 9vw, 3.2rem);
    }

    .edl-ap-hero__watermark {
        display: none;
    }

    .edl-ap-story__pillars {
        grid-template-columns: 1fr;
    }

    .edl-ap-story__visual {
        max-width: 300px;
    }

    .edl-ap-legal__grid {
        grid-template-columns: 1fr;
    }

    .edl-ap-numbers__inner {
        flex-direction: column;
        gap: 0;
    }

    .edl-ap-number__divider {
        width: 40px;
        height: 1px;
        margin: 0 auto;
    }

    .edl-ap-service-item__price {
        display: none;
    }
}

@media (max-width: 640px) {

    .edl-ap-hero,
    .edl-ap-story,
    .edl-ap-numbers,
    .edl-ap-values,
    .edl-ap-services,
    .edl-ap-legal {
        padding-left: 1.1rem;
        padding-right: 1.1rem;
    }

    .edl-ap-values__grid {
        grid-template-columns: 1fr;
    }

    .edl-ap-badge {
        display: none;
    }

    .edl-ap-chip {
        padding: 0.55rem 0.75rem;
    }

    .edl-ap-chip__icon {
        width: 28px;
        height: 28px;
        font-size: 0.78rem;
    }

    .edl-ap-chip--founded {
        top: -6px;
        left: -6px;
    }

    .edl-ap-chip--location {
        bottom: -6px;
        right: -6px;
    }

    .edl-ap-service-item {
        gap: 0.9rem;
        padding: 1.1rem;
    }

    .edl-ap-service-item__icon {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {

    .edl-ap-story__ring,
    .edl-ap-badge {
        animation: none !important;
    }
}

/* =========================================================
   ELIASSDEVLAND — ABOUT PAGE
   Append after service-page.css
   All classes prefixed edl-ap-
   ========================================================= */

/* =========================================================
   ABOUT PAGE WRAPPER
   ========================================================= */

.edl-about-page {
    background: var(--edl-light);
    overflow: hidden;
}

.edl-about-page h1,
.edl-about-page h2,
.edl-about-page h3,
.edl-about-page h4 {
    font-family: var(--font-title) !important;
}


/* =========================================================
   AP HERO — compact dark, same family as service pages
   ========================================================= */

.edl-ap-hero {
    position: relative;
    padding: clamp(5.5rem, 9vh, 7.5rem) 1.5rem clamp(4rem, 7vh, 5.5rem);
    background:
        radial-gradient(1100px 500px at 70% 0%, rgba(173, 216, 236, 0.14), transparent 55%),
        radial-gradient(700px 400px at 5% 100%, rgba(195, 49, 73, 0.08), transparent 55%),
        linear-gradient(160deg, var(--edl-graphite) 0%, var(--edl-graphite-2) 55%, var(--edl-graphite-3) 100%);
    overflow: hidden;
    isolation: isolate;
}

.edl-ap-hero::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: conic-gradient(from 210deg at 72% 38%,
            transparent 0deg,
            rgba(173, 216, 236, 0.07) 50deg,
            transparent 100deg);
    filter: blur(50px);
    z-index: -1;
    pointer-events: none;
}

.edl-ap-hero__watermark {
    position: absolute;
    right: 4vw;
    top: 50%;
    transform: translateY(-50%);
    font-size: clamp(8rem, 18vw, 16rem);
    color: rgba(173, 216, 236, 0.055);
    z-index: 0;
    pointer-events: none;
    line-height: 1;
}

.edl-ap-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
}

.edl-ap-hero__title {
    margin: 0 0 1.1rem;
    font-size: clamp(2.5rem, 4.8vw, 4.5rem);
    line-height: 1.04;
    font-weight: 700;
    letter-spacing: -0.05em;
    color: var(--edl-white);
    max-width: 900px;
}

.edl-ap-hero__title span {
    background: linear-gradient(90deg, var(--edl-icy) 0%, #DDEFFA 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.edl-ap-hero__tagline {
    margin: 0;
    max-width: 600px;
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    line-height: 1.65;
    color: var(--edl-muted-light);
}


/* =========================================================
   AP STORY — founder / brand narrative
   ========================================================= */

.edl-ap-story {
    padding: 6rem 1.5rem;
    background: var(--edl-white);
}

.edl-ap-story__inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(3rem, 6vw, 5.5rem);
    align-items: center;
}

/* ---- left: identity card ---- */
.edl-ap-story__card {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    border-radius: var(--edl-radius-lg);
    background:
        radial-gradient(circle at 20% 15%, rgba(173, 216, 236, 0.22), transparent 50%),
        radial-gradient(circle at 85% 85%, rgba(195, 49, 73, 0.18), transparent 50%),
        linear-gradient(155deg, var(--edl-graphite) 0%, var(--edl-graphite-3) 100%);
    box-shadow: var(--edl-shadow-lg);
    overflow: hidden;
}

/* top: icon + name */
.edl-ap-story__card-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.8rem 1.8rem 1.5rem;
}

.edl-ap-story__card-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 1.4rem;
    background: linear-gradient(135deg, var(--edl-icy), var(--edl-icy-2));
    color: var(--edl-graphite);
    box-shadow: 0 12px 28px rgba(173, 216, 236, 0.3);
}

.edl-ap-story__card-head strong {
    display: block;
    font-family: var(--font-title);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--edl-white);
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.edl-ap-story__card-head span {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--edl-icy);
    margin-top: 0.25rem;
}

/* divider */
.edl-ap-story__card-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 0 1.8rem;
}

/* 2x2 facts grid */
.edl-ap-story__card-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, 0.07);
    margin: 1.5rem 1.8rem;
    border-radius: var(--edl-radius);
    overflow: hidden;
}

.edl-ap-story__fact {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1.1rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    transition: background .2s ease;
}

.edl-ap-story__fact:hover {
    background: rgba(255, 255, 255, 0.07);
}

.edl-ap-story__fact-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.08);
    color: var(--edl-icy);
}

.edl-ap-story__fact-icon--icy {
    background: rgba(173, 216, 236, 0.15);
    color: var(--edl-icy);
}

.edl-ap-story__fact-icon--dark {
    background: rgba(173, 216, 236, 0.12);
    color: var(--edl-icy);
}

.edl-ap-story__fact-icon--muted {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.5);
}

.edl-ap-story__fact small {
    display: block;
    font-family: var(--font-title);
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.edl-ap-story__fact strong {
    display: block;
    font-family: var(--font-title);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--edl-white);
    line-height: 1;
    letter-spacing: -0.02em;
}

/* footer accent strip */
.edl-ap-story__card-footer {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 1rem 1.8rem 1.6rem;
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.4);
}

.edl-ap-story__card-footer i {
    color: var(--edl-icy);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.edl-ap-story__card-footer span:first-of-type {
    flex: 1;
}

.edl-ap-story__card-nif {
    font-family: var(--font-title);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.22);
    white-space: nowrap;
    flex-shrink: 0;
}

/* ---- right content ---- */
.edl-ap-story__lead {
    margin: 1.2rem 0 1rem;
    font-size: 1.15rem;
    line-height: 1.7;
    font-weight: 500;
    color: var(--edl-graphite);
    letter-spacing: -0.01em;
}

.edl-ap-story__content p:not(.edl-eyebrow):not(.edl-ap-story__lead) {
    margin: 0.95rem 0 0;
    font-size: 1rem;
    line-height: 1.76;
    color: var(--edl-muted);
}

.edl-ap-story__pillars {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    margin-top: 1.8rem;
}

.edl-ap-pillar {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 0.85rem;
    border-radius: 12px;
    background: var(--edl-light);
    border: 1px solid var(--edl-border);
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--edl-graphite);
    line-height: 1.3;
}

.edl-ap-pillar i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--edl-icy);
    color: var(--edl-graphite);
    font-size: 0.62rem;
}


/* =========================================================
   AP NUMBERS — stat strip
   ========================================================= */

.edl-ap-numbers {
    background: var(--edl-graphite);
    padding: 3rem 1.5rem;
}

.edl-ap-numbers__inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.edl-ap-number {
    flex: 1;
    min-width: 140px;
    text-align: center;
    padding: 1rem 1.5rem;
}

.edl-ap-number strong {
    display: block;
    font-family: var(--font-title);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--edl-icy);
    letter-spacing: -0.05em;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.edl-ap-number span {
    font-size: 0.8rem;
    color: var(--edl-muted-light);
    line-height: 1.3;
}

.edl-ap-number__divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}


/* =========================================================
   AP VALUES — dark section
   ========================================================= */

.edl-ap-values {
    position: relative;
    padding: 6rem 1.5rem;
    background:
        radial-gradient(900px 450px at 15% 10%, rgba(173, 216, 236, 0.10), transparent 60%),
        radial-gradient(700px 350px at 85% 90%, rgba(195, 49, 73, 0.08), transparent 60%),
        linear-gradient(160deg, var(--edl-graphite) 0%, var(--edl-graphite-3) 100%);
    overflow: hidden;
    text-align: center;
}

.edl-ap-values__inner {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
}

.edl-ap-values__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
    margin-top: 3rem;
}

.edl-ap-value {
    padding: 2rem 1.5rem;
    border-radius: var(--edl-radius);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    text-align: left;
    transition: transform .22s ease, background-color .22s ease, border-color .22s ease;
}

.edl-ap-value:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(173, 216, 236, 0.28);
}

.edl-ap-value__icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    border-radius: 16px;
    font-size: 1.25rem;
    background: linear-gradient(135deg, var(--edl-icy), var(--edl-icy-2));
    color: var(--edl-graphite);
    box-shadow: 0 10px 22px rgba(173, 216, 236, 0.22);
}

.edl-ap-value h3 {
    margin: 0 0 0.65rem;
    font-size: 1.06rem;
    font-weight: 700;
    color: var(--edl-white);
}

.edl-ap-value p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--edl-muted-light);
}


/* =========================================================
   AP SERVICES — all 6 services compact list
   ========================================================= */

.edl-ap-services {
    padding: 6rem 1.5rem;
    background: var(--edl-light);
}

.edl-ap-services__inner {
    max-width: 1180px;
    margin: 0 auto;
}

.edl-ap-services__grid {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 3rem;
}

.edl-ap-service-item {
    display: flex;
    align-items: center;
    gap: 1.3rem;
    padding: 1.35rem 1.5rem;
    border-radius: var(--edl-radius);
    background: var(--edl-white);
    border: 1px solid var(--edl-border);
    box-shadow: var(--edl-shadow-sm);
    text-decoration: none;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.edl-ap-service-item:hover {
    transform: translateX(6px);
    box-shadow: var(--edl-shadow-md);
    border-color: rgba(173, 216, 236, 0.5);
}

.edl-ap-service-item__icon {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 1.2rem;
    background: linear-gradient(135deg, var(--edl-icy), var(--edl-icy-2));
    color: var(--edl-graphite);
    box-shadow: 0 10px 22px rgba(173, 216, 236, 0.28);
}

.edl-ap-service-item__body {
    flex: 1;
    min-width: 0;
}

.edl-ap-service-item__body h3 {
    margin: 0 0 0.25rem;
    font-family: var(--font-title);
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--edl-graphite);
    line-height: 1.2;
}

.edl-ap-service-item__body p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--edl-muted);
}

.edl-ap-service-item__price {
    flex-shrink: 0;
    font-family: var(--font-title);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--edl-graphite);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: var(--edl-light);
    border: 1px solid var(--edl-border);
    white-space: nowrap;
}

.edl-ap-service-item__arrow {
    flex-shrink: 0;
    color: rgba(47, 45, 46, 0.22);
    font-size: 0.85rem;
    transition: color .2s ease, transform .2s ease;
}

.edl-ap-service-item:hover .edl-ap-service-item__arrow {
    color: var(--edl-cherry);
    transform: translateX(4px);
}


/* =========================================================
   AP LEGAL — company registration details
   ========================================================= */

.edl-ap-legal {
    padding: 6rem 1.5rem;
    background: var(--edl-white);
}

.edl-ap-legal__inner {
    max-width: 1180px;
    margin: 0 auto;
}

.edl-ap-legal__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

.edl-ap-legal-card {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    padding: 1.5rem 1.4rem;
    border-radius: var(--edl-radius);
    background: var(--edl-light);
    border: 1px solid var(--edl-border);
    box-shadow: var(--edl-shadow-sm);
}

.edl-ap-legal-card__icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 1.05rem;
    background: linear-gradient(135deg, var(--edl-graphite), var(--edl-graphite-2));
    color: var(--edl-icy);
    box-shadow: 0 8px 18px rgba(31, 29, 31, 0.14);
}

.edl-ap-legal-card__body {
    min-width: 0;
}

.edl-ap-legal-card__body small {
    display: block;
    font-family: var(--font-title);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--edl-muted);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.edl-ap-legal-card__body strong {
    display: block;
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 700;
    color: var(--edl-graphite);
    line-height: 1.4;
}

.edl-ap-legal-card--link .edl-ap-legal-card__body strong a {
    color: var(--edl-graphite);
    text-decoration: none;
    transition: color .2s ease;
}

.edl-ap-legal-card--link .edl-ap-legal-card__body strong a:hover {
    color: var(--edl-cherry);
}

.edl-ap-legal-card--link .edl-ap-legal-card__icon {
    background: linear-gradient(135deg, var(--edl-cherry), var(--edl-cherry-2));
    color: var(--edl-white);
}

/* WhatsApp gets a green tint */
.edl-ap-legal-card:last-child .edl-ap-legal-card__icon {
    background: linear-gradient(135deg, #25D366, #1aab52);
    color: var(--edl-white);
}


/* =========================================================
   RESPONSIVE — ABOUT PAGE
   ========================================================= */

@media (max-width: 1024px) {
    .edl-ap-story__inner {
        grid-template-columns: 1fr;
    }

    .edl-ap-story__card {
        max-width: 420px;
    }

    .edl-ap-values__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .edl-ap-numbers__inner {
        gap: 0;
    }
}

@media (max-width: 768px) {
    .edl-ap-hero {
        padding-top: 6rem;
    }

    .edl-ap-hero__title {
        font-size: clamp(2.2rem, 9vw, 3.2rem);
    }

    .edl-ap-hero__watermark {
        display: none;
    }

    .edl-ap-story__pillars {
        grid-template-columns: 1fr;
    }

    .edl-ap-story__card {
        max-width: 100%;
    }

    .edl-ap-story__card-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .edl-ap-legal__grid {
        grid-template-columns: 1fr;
    }

    .edl-ap-numbers__inner {
        flex-direction: column;
        gap: 0;
    }

    .edl-ap-number__divider {
        width: 40px;
        height: 1px;
        margin: 0 auto;
    }

    .edl-ap-service-item__price {
        display: none;
    }
}

@media (max-width: 640px) {

    .edl-ap-hero,
    .edl-ap-story,
    .edl-ap-numbers,
    .edl-ap-values,
    .edl-ap-services,
    .edl-ap-legal {
        padding-left: 1.1rem;
        padding-right: 1.1rem;
    }

    .edl-ap-values__grid {
        grid-template-columns: 1fr;
    }

    .edl-ap-story__card-head {
        padding: 1.4rem 1.4rem 1.2rem;
    }

    .edl-ap-story__card-facts {
        margin: 1.2rem 1.4rem;
    }

    .edl-ap-story__card-footer {
        padding: 0.85rem 1.4rem 1.4rem;
    }

    .edl-ap-service-item {
        gap: 0.9rem;
        padding: 1.1rem;
    }

    .edl-ap-service-item__icon {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    /* no animations remain in the new card design */
}

/* =========================================================
   CONSULTATION BOOKING SECTION
   ========================================================= */

.edl-consultation {
    position: relative;
    padding: 6rem 1.5rem;
    background:
        radial-gradient(1100px 550px at 80% 5%, rgba(173, 216, 236, 0.12), transparent 55%),
        radial-gradient(700px 400px at 5% 95%, rgba(195, 49, 73, 0.10), transparent 55%),
        linear-gradient(160deg, var(--edl-graphite) 0%, var(--edl-graphite-2) 55%, var(--edl-graphite-3) 100%);
    overflow: hidden;
}

/* same subtle conic shine used in service page heros */
.edl-consultation::before {
    content: "";
    position: absolute;
    inset: -30%;
    background: conic-gradient(from 200deg at 78% 28%,
            transparent 0deg,
            rgba(173, 216, 236, 0.06) 50deg,
            transparent 100deg);
    filter: blur(50px);
    z-index: 0;
    pointer-events: none;
}

.edl-consultation__inner {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
}

.edl-consultation .edl-section-head {
    max-width: 680px;
}

.edl-consultation__subtitle {
    margin: 0.85rem auto 0;
    max-width: 580px;
    font-size: 1rem;
    line-height: 1.68;
    color: var(--edl-muted-light);
    text-align: center;
}

.edl-consultation__subtitle strong {
    color: var(--edl-icy);
    font-weight: 700;
}

/* ---- plan cards grid ---- */
.edl-consultation__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
    margin-top: 3.5rem;
    align-items: stretch;
}

/* ---- individual plan card ---- */
.edl-plan {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 2rem 1.8rem;
    border-radius: var(--edl-radius-lg);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform .25s ease, border-color .25s ease, background-color .25s ease;
}

.edl-plan:hover {
    transform: translateY(-6px);
    border-color: rgba(173, 216, 236, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

/* featured card — stands out */
.edl-plan--featured {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(173, 216, 236, 0.4);
    box-shadow:
        0 0 0 1px rgba(173, 216, 236, 0.2),
        0 30px 70px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(173, 216, 236, 0.12);
}

.edl-plan--featured:hover {
    transform: translateY(-8px);
    border-color: rgba(173, 216, 236, 0.6);
}

/* "Most popular" badge */
.edl-plan__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.32rem 0.9rem;
    border-radius: 999px;
    font-family: var(--font-title);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
    color: var(--edl-graphite);
    background: linear-gradient(90deg, var(--edl-icy), var(--edl-icy-2));
    box-shadow: 0 8px 20px rgba(173, 216, 236, 0.35);
}

.edl-plan__badge i {
    font-size: 0.62rem;
}

/* plan head: icon + duration/label */
.edl-plan__head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.6rem;
}

.edl-plan__icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 1.2rem;
    background: linear-gradient(135deg, var(--edl-icy), var(--edl-icy-2));
    color: var(--edl-graphite);
    box-shadow: 0 10px 24px rgba(173, 216, 236, 0.25);
}

.edl-plan__duration {
    display: block;
    font-family: var(--font-title);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--edl-icy);
    margin-bottom: 0.2rem;
}

.edl-plan__label {
    display: block;
    font-family: var(--font-title);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--edl-white);
    letter-spacing: -0.03em;
    line-height: 1;
}

/* price */
.edl-plan__price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.edl-plan__price strong {
    font-family: var(--font-title);
    font-size: clamp(2.4rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--edl-white);
    letter-spacing: -0.05em;
    line-height: 1;
}

.edl-plan__price span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.3;
}

/* description */
.edl-plan__desc {
    margin: 0 0 1.4rem;
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--edl-muted-light);
}

/* features list */
.edl-plan__features {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    flex: 1;
}

.edl-plan__features li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.72);
}

.edl-plan__features i {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.62rem;
    background: rgba(173, 216, 236, 0.15);
    color: var(--edl-icy);
}

/* CTA button — always at the bottom of the card */
.edl-plan__cta {
    width: 100%;
    margin-top: auto;
    justify-content: center;
}

/* ghost variant on dark background needs its own style */
.edl-btn--ghost-dark {
    color: var(--edl-white);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.14);
}

.edl-btn--ghost-dark:hover {
    color: var(--edl-white);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(173, 216, 236, 0.4);
    transform: translateY(-2px);
}

/* bottom trust note */
.edl-consultation__note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 2.5rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
}

.edl-consultation__note i {
    color: var(--edl-icy);
    font-size: 0.85rem;
}

/* ---- responsive ---- */

@media (max-width: 1024px) {
    .edl-consultation__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .edl-consultation__grid {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin-left: auto;
        margin-right: auto;
    }

    .edl-plan--featured {
        order: -1;
    }
}

@media (max-width: 640px) {
    .edl-consultation {
        padding-left: 1.1rem;
        padding-right: 1.1rem;
    }

    .edl-plan {
        padding: 1.6rem 1.4rem;
    }

    .edl-plan__price strong {
        font-size: 2.4rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .edl-plan {
        transition: none;
    }
}

/* =========================================================
   ELIASSDEVLAND — CONTACT PAGE
   Append after all other CSS blocks.
   Classes: edl-cp- prefix (contact page)
   Reuses: all root variables, .edl-btn, .edl-eyebrow,
           .edl-sp-breadcrumb (from service-page.css)
   ========================================================= */

/* =========================================================
   CONTACT PAGE WRAPPER
   ========================================================= */

.edl-contact-page {
    background: var(--edl-light);
    overflow: hidden;
}

.edl-contact-page h1,
.edl-contact-page h2,
.edl-contact-page h3 {
    font-family: var(--font-title) !important;
}


/* =========================================================
   CP HERO — compact dark, same family as service pages
   ========================================================= */

.edl-cp-hero {
    position: relative;
    padding: clamp(5.5rem, 9vh, 7.5rem) 1.5rem clamp(4rem, 7vh, 5.5rem);
    background:
        radial-gradient(1000px 480px at 75% 0%, rgba(173, 216, 236, 0.13), transparent 55%),
        radial-gradient(700px 380px at 5% 100%, rgba(195, 49, 73, 0.07), transparent 55%),
        linear-gradient(160deg, var(--edl-graphite) 0%, var(--edl-graphite-2) 55%, var(--edl-graphite-3) 100%);
    overflow: hidden;
    isolation: isolate;
}

.edl-cp-hero::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: conic-gradient(from 210deg at 72% 38%,
            transparent 0deg,
            rgba(173, 216, 236, 0.06) 50deg,
            transparent 100deg);
    filter: blur(50px);
    z-index: -1;
    pointer-events: none;
}

.edl-cp-hero__watermark {
    position: absolute;
    right: 4vw;
    top: 50%;
    transform: translateY(-50%);
    font-size: clamp(7rem, 15vw, 13rem);
    color: rgba(173, 216, 236, 0.055);
    z-index: 0;
    pointer-events: none;
    line-height: 1;
}

.edl-cp-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
}

.edl-cp-hero__title {
    margin: 0 0 1.1rem;
    font-size: clamp(2.4rem, 4.5vw, 4.2rem);
    line-height: 1.04;
    font-weight: 700;
    letter-spacing: -0.05em;
    color: var(--edl-white);
    max-width: 780px;
}

.edl-cp-hero__title span {
    background: linear-gradient(90deg, var(--edl-icy) 0%, #DDEFFA 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.edl-cp-hero__tagline {
    margin: 0;
    max-width: 600px;
    font-size: clamp(1rem, 1.2vw, 1.08rem);
    line-height: 1.65;
    color: var(--edl-muted-light);
}


/* =========================================================
   CP MAIN — two-column: info left, form right
   ========================================================= */

.edl-cp-main {
    padding: 5.5rem 1.5rem;
    background: var(--edl-white);
}

.edl-cp-main__inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(2.5rem, 5vw, 4.5rem);
    align-items: start;
}


/* =========================================================
   CP INFO — contact detail cards
   ========================================================= */

.edl-cp-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: sticky;
    top: 2rem;
}

/* base card */
.edl-cp-info-card {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    padding: 1.25rem 1.3rem;
    border-radius: var(--edl-radius);
    background: var(--edl-light);
    border: 1px solid var(--edl-border);
    box-shadow: var(--edl-shadow-sm);
    text-decoration: none;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

a.edl-cp-info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--edl-shadow-md);
    border-color: rgba(173, 216, 236, 0.45);
}

/* WhatsApp variant — slightly elevated */
.edl-cp-info-card--wa {
    background:
        radial-gradient(circle at 90% 50%, rgba(37, 211, 102, 0.08), transparent 60%),
        var(--edl-light);
    border-color: rgba(37, 211, 102, 0.2);
}

.edl-cp-info-card--wa:hover {
    border-color: rgba(37, 211, 102, 0.45) !important;
}

/* static (non-link) card */
.edl-cp-info-card--static {
    cursor: default;
}

/* icon tile */
.edl-cp-info-card__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 1.15rem;
    background: linear-gradient(135deg, var(--edl-graphite), var(--edl-graphite-2));
    color: var(--edl-icy);
    box-shadow: 0 8px 18px rgba(31, 29, 31, 0.14);
    transition: transform .22s ease;
}

a.edl-cp-info-card:hover .edl-cp-info-card__icon {
    transform: scale(1.06);
}

.edl-cp-info-card--wa .edl-cp-info-card__icon {
    background: linear-gradient(135deg, #25D366, #1aab52);
    color: var(--edl-white);
}

/* body text */
.edl-cp-info-card__body {
    flex: 1;
    min-width: 0;
}

.edl-cp-info-card__body small {
    display: block;
    font-family: var(--font-title);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--edl-muted);
    margin-bottom: 0.3rem;
}

.edl-cp-info-card__body strong {
    display: block;
    font-family: var(--font-title);
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--edl-graphite);
    line-height: 1.2;
    margin-bottom: 0.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.edl-cp-info-card__body span {
    font-size: 0.8rem;
    color: var(--edl-muted);
}

/* external link arrow */
.edl-cp-info-card__out {
    flex-shrink: 0;
    font-size: 0.78rem;
    color: rgba(47, 45, 46, 0.22);
    transition: color .2s ease, transform .2s ease;
}

a.edl-cp-info-card:hover .edl-cp-info-card__out {
    color: var(--edl-cherry);
    transform: translate(2px, -2px);
}

/* languages row */
.edl-cp-langs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.35rem;
}

.edl-cp-langs span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--edl-graphite);
    background: var(--edl-white);
    border: 1px solid var(--edl-border);
}

/* social row */
.edl-cp-social {
    padding: 1.25rem 1.3rem;
    border-radius: var(--edl-radius);
    background: var(--edl-light);
    border: 1px solid var(--edl-border);
}

.edl-cp-social small {
    display: block;
    font-family: var(--font-title);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--edl-muted);
    margin-bottom: 0.9rem;
}

.edl-cp-social__links {
    display: flex;
    gap: 0.65rem;
}

.edl-cp-social__links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 0.95rem;
    color: var(--edl-graphite);
    background: var(--edl-white);
    border: 1px solid var(--edl-border);
    text-decoration: none;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.edl-cp-social__links a:hover {
    color: var(--edl-white);
    background: var(--edl-graphite);
    border-color: var(--edl-graphite);
    transform: translateY(-2px);
}


/* =========================================================
   CP FORM WRAP — card around WPForms
   ========================================================= */

.edl-cp-form-wrap {
    background: var(--edl-white);
    border-radius: var(--edl-radius-lg);
    border: 1px solid var(--edl-border);
    box-shadow: var(--edl-shadow-md);
    overflow: hidden;
}

/* form header strip */
.edl-cp-form-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.4rem 2rem;
    background:
        radial-gradient(circle at 90% 50%, rgba(173, 216, 236, 0.12), transparent 60%),
        linear-gradient(135deg, var(--edl-graphite), var(--edl-graphite-2));
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.edl-cp-form-head>i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 13px;
    font-size: 1.05rem;
    background: rgba(173, 216, 236, 0.15);
    color: var(--edl-icy);
    flex-shrink: 0;
}

.edl-cp-form-head strong {
    display: block;
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 700;
    color: var(--edl-white);
    line-height: 1.2;
    margin-bottom: 0.2rem;
}

.edl-cp-form-head span {
    font-size: 0.78rem;
    color: var(--edl-muted-light);
}

.edl-cp-form-body {
    padding: 2.2rem 2rem 2rem;
}


/* =========================================================
   WPFORMS OVERRIDES — match brand design
   Targets WPForms markup. If your WPForms version differs
   slightly, these selectors may need minor adjustments.
   ========================================================= */

/* container reset */
.edl-cp-form-body .wpforms-container {
    font-family: var(--font-body);
}

/* field rows */
.edl-cp-form-body .wpforms-field {
    padding: 0 0 1.4rem !important;
}

/* labels */
.edl-cp-form-body .wpforms-field-label {
    font-family: var(--font-title) !important;
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
    color: var(--edl-graphite) !important;
    margin-bottom: 0.55rem !important;
}

/* required star */
.edl-cp-form-body .wpforms-required-label {
    color: var(--edl-cherry) !important;
}

/* all text inputs + textarea */
.edl-cp-form-body .wpforms-field-text input,
.edl-cp-form-body .wpforms-field-email input,
.edl-cp-form-body .wpforms-field-name input,
.edl-cp-form-body .wpforms-field-phone input,
.edl-cp-form-body .wpforms-field-url input,
.edl-cp-form-body .wpforms-field-number input,
.edl-cp-form-body .wpforms-field-select select,
.edl-cp-form-body .wpforms-field-textarea textarea,
.edl-cp-form-body input[type="text"],
.edl-cp-form-body input[type="email"],
.edl-cp-form-body textarea {
    width: 100% !important;
    padding: 0.85rem 1.1rem !important;
    font-family: var(--font-body) !important;
    font-size: 0.96rem !important;
    color: var(--edl-graphite) !important;
    background: var(--edl-light) !important;
    border: 1.5px solid var(--edl-border) !important;
    border-radius: var(--edl-radius-sm) !important;
    box-shadow: none !important;
    outline: none !important;
    transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

/* hover state */
.edl-cp-form-body .wpforms-field-text input:hover,
.edl-cp-form-body .wpforms-field-email input:hover,
.edl-cp-form-body .wpforms-field-name input:hover,
.edl-cp-form-body .wpforms-field-textarea textarea:hover,
.edl-cp-form-body input[type="text"]:hover,
.edl-cp-form-body input[type="email"]:hover,
.edl-cp-form-body textarea:hover {
    border-color: rgba(47, 45, 46, 0.2) !important;
    background: var(--edl-white) !important;
}

/* focus state — icy blue ring */
.edl-cp-form-body .wpforms-field-text input:focus,
.edl-cp-form-body .wpforms-field-email input:focus,
.edl-cp-form-body .wpforms-field-name input:focus,
.edl-cp-form-body .wpforms-field-textarea textarea:focus,
.edl-cp-form-body input[type="text"]:focus,
.edl-cp-form-body input[type="email"]:focus,
.edl-cp-form-body textarea:focus {
    border-color: var(--edl-icy) !important;
    background: var(--edl-white) !important;
    box-shadow: 0 0 0 4px rgba(173, 216, 236, 0.18) !important;
}

/* textarea specific */
.edl-cp-form-body .wpforms-field-textarea textarea {
    min-height: 150px !important;
    resize: vertical !important;
    line-height: 1.65 !important;
}

/* placeholder */
.edl-cp-form-body input::placeholder,
.edl-cp-form-body textarea::placeholder {
    color: rgba(47, 45, 46, 0.38) !important;
    font-size: 0.93rem !important;
}

/* error state */
.edl-cp-form-body .wpforms-error input,
.edl-cp-form-body .wpforms-error textarea,
.edl-cp-form-body input.wpforms-error,
.edl-cp-form-body textarea.wpforms-error {
    border-color: var(--edl-cherry) !important;
    box-shadow: 0 0 0 4px var(--edl-cherry-soft) !important;
}

.edl-cp-form-body label.wpforms-error {
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    color: var(--edl-cherry) !important;
    margin-top: 0.4rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.35rem !important;
}

/* submit button — override WPForms with our primary button style */
.edl-cp-form-body .wpforms-submit-container {
    margin-top: 0.5rem !important;
    padding: 0 !important;
}

.edl-cp-form-body button[type="submit"],
.edl-cp-form-body .wpforms-submit {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.55rem !important;
    width: 100% !important;
    min-height: 54px !important;
    padding: 0.9rem 2rem !important;
    font-family: var(--font-title) !important;
    font-size: 0.86rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.07em !important;
    text-transform: uppercase !important;
    color: var(--edl-graphite) !important;
    background: var(--edl-icy) !important;
    border: none !important;
    border-radius: 999px !important;
    cursor: pointer !important;
    box-shadow: var(--edl-shadow-icy) !important;
    transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

.edl-cp-form-body button[type="submit"]:hover,
.edl-cp-form-body .wpforms-submit:hover {
    background: var(--edl-icy-2) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 24px 50px rgba(173, 216, 236, 0.45) !important;
    color: var(--edl-graphite) !important;
}

.edl-cp-form-body button[type="submit"]:active,
.edl-cp-form-body .wpforms-submit:active {
    transform: translateY(0) !important;
}

/* success / confirmation message */
.edl-cp-form-body .wpforms-confirmation-container-full,
.edl-cp-form-body .wpforms-confirmation-container {
    padding: 1.5rem 1.4rem !important;
    border-radius: var(--edl-radius) !important;
    background: rgba(173, 216, 236, 0.12) !important;
    border: 1px solid rgba(173, 216, 236, 0.35) !important;
    font-family: var(--font-body) !important;
    font-size: 0.96rem !important;
    color: var(--edl-graphite) !important;
}

/* name field: first + last inline on desktop */
.edl-cp-form-body .wpforms-field-name .wpforms-field-row {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 1rem !important;
}

/* remove WPForms default bottom border / separators */
.edl-cp-form-body .wpforms-field:not(:last-child) {
    border-bottom: none !important;
}

/* hide WPForms title if present (we have our own header) */
.edl-cp-form-body .wpforms-head-container {
    display: none !important;
}


/* =========================================================
   CP BOTTOM CTA — consultation nudge
   ========================================================= */

.edl-cp-cta {
    padding: 5rem 1.5rem;
    background:
        radial-gradient(900px 450px at 15% 10%, rgba(173, 216, 236, 0.12), transparent 60%),
        radial-gradient(700px 350px at 85% 90%, rgba(195, 49, 73, 0.10), transparent 60%),
        linear-gradient(160deg, var(--edl-graphite) 0%, var(--edl-graphite-3) 100%);
}

.edl-cp-cta__inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.edl-cp-cta__text {
    max-width: 580px;
}

.edl-cp-cta__text h2 {
    margin: 0.5rem 0 0.8rem;
    font-size: clamp(1.7rem, 2.8vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--edl-white);
    line-height: 1.1;
}

.edl-cp-cta__text p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.68;
    color: var(--edl-muted-light);
}

.edl-cp-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    flex-shrink: 0;
}


/* =========================================================
   RESPONSIVE — CONTACT PAGE
   ========================================================= */

@media (max-width: 1024px) {
    .edl-cp-main__inner {
        grid-template-columns: 1fr;
    }

    .edl-cp-info {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem;
    }

    .edl-cp-social {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .edl-cp-hero {
        padding-top: 6rem;
    }

    .edl-cp-hero__title {
        font-size: clamp(2.2rem, 9vw, 3.2rem);
    }

    .edl-cp-hero__watermark {
        display: none;
    }

    .edl-cp-info {
        grid-template-columns: 1fr;
    }

    .edl-cp-social {
        grid-column: auto;
    }

    .edl-cp-form-body {
        padding: 1.6rem 1.3rem 1.5rem;
    }

    .edl-cp-cta__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    /* name field stack on mobile */
    .edl-cp-form-body .wpforms-field-name .wpforms-field-row {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 640px) {

    .edl-cp-hero,
    .edl-cp-main,
    .edl-cp-cta {
        padding-left: 1.1rem;
        padding-right: 1.1rem;
    }

    .edl-cp-info-card__body strong {
        font-size: 0.88rem;
    }

    .edl-cp-form-head {
        padding: 1.2rem 1.3rem;
    }

    .edl-cp-cta__actions .edl-btn {
        width: 100%;
    }
}

.ct-header-cta .ct-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 50px;
    padding: 0.85rem 1.7rem;
    border-radius: 999px;
    font-family: var(--font-title);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease, border-color .22s ease, color .22s ease;

    background: var(--edl-icy);
    color: var(--edl-graphite);
    box-shadow: var(--edl-shadow-icy);
}

.ct-header-cta .ct-button:hover,
.ct-header-cta .ct-button:focus {
    color: var(--edl-graphite);
    background: var(--edl-icy-2);
    transform: translateY(-2px);
    box-shadow: 0 24px 50px rgba(173, 216, 236, 0.45);
}

/* =========================================================
   ELIASSDEVLAND — CUSTOM FOOTER
   ========================================================= */

.edl-footer {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 5.5rem 1.5rem 0;
    background:
        radial-gradient(900px 420px at 15% 15%, rgba(173, 216, 236, 0.13), transparent 60%),
        radial-gradient(760px 420px at 90% 80%, rgba(195, 49, 73, 0.10), transparent 58%),
        linear-gradient(160deg, var(--edl-graphite) 0%, var(--edl-graphite-2) 55%, var(--edl-graphite-3) 100%);
    color: var(--edl-white);
}

.edl-footer::before {
    content: "";
    position: absolute;
    inset: -35%;
    z-index: -2;
    background: conic-gradient(from 220deg at 70% 30%,
            transparent 0deg,
            rgba(173, 216, 236, 0.08) 42deg,
            transparent 95deg);
    filter: blur(42px);
}

.edl-footer__glow {
    position: absolute;
    z-index: -1;
    pointer-events: none;
    border-radius: 999px;
    filter: blur(35px);
    opacity: 0.85;
}

.edl-footer__glow--one {
    width: 260px;
    height: 260px;
    left: 8%;
    top: 20%;
    background: rgba(173, 216, 236, 0.16);
}

.edl-footer__glow--two {
    width: 220px;
    height: 220px;
    right: 9%;
    bottom: 14%;
    background: rgba(195, 49, 73, 0.13);
}

.edl-footer__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(280px, 1.25fr) minmax(140px, 0.55fr) minmax(160px, 0.65fr) minmax(360px, 1.2fr);
    gap: clamp(2rem, 4vw, 4rem);
    max-width: 1180px;
    margin: 0 auto;
    padding-bottom: 4rem;
}

.edl-footer__brand {
    max-width: 390px;
}

.edl-footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.25rem;
    text-decoration: none;
}

.edl-footer__logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    color: var(--edl-graphite);
    background: linear-gradient(135deg, var(--edl-icy), var(--edl-icy-2));
    box-shadow: var(--edl-shadow-icy);
}

.edl-footer__logo-mark i {
    font-size: 1rem;
}

.edl-footer__logo-text {
    font-family: var(--font-title);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--edl-white);
}

.edl-footer__brand p {
    margin: 0 0 1.5rem;
    max-width: 360px;
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--edl-muted-light);
}

.edl-footer__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.edl-footer__socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--edl-white);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-decoration: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform .22s ease, background-color .22s ease, border-color .22s ease, color .22s ease;
}

.edl-footer__socials a:hover {
    color: var(--edl-graphite);
    background: var(--edl-icy);
    border-color: var(--edl-icy);
    transform: translateY(-3px);
}

.edl-footer__col h3,
.edl-footer__contact h3 {
    margin: 0 0 1.2rem;
    font-family: var(--font-title);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--edl-icy);
}

.edl-footer__col ul {
    display: grid;
    gap: 0.7rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.edl-footer__col a {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--edl-muted-light);
    font-size: 0.92rem;
    line-height: 1.4;
    text-decoration: none;
    transition: color .2s ease, transform .2s ease;
}

.edl-footer__col a i {
    font-size: 0.65rem;
    color: var(--edl-cherry);
    transform: translateX(0);
    transition: transform .2s ease, color .2s ease;
}

.edl-footer__col a:hover {
    color: var(--edl-white);
    transform: translateX(3px);
}

.edl-footer__col a:hover i {
    color: var(--edl-icy);
    transform: translateX(2px);
}

.edl-footer__contact {
    padding: 1.35rem;
    border-radius: var(--edl-radius);
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
    border: 1px solid rgba(255, 255, 255, 0.11);
    box-shadow: var(--edl-shadow-dark);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.edl-footer__contact-item {
    display: flex;
    gap: 0.85rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.edl-footer__contact-item:first-of-type {
    padding-top: 0;
}

.edl-footer__contact-item>span {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 13px;
    color: var(--edl-graphite);
    background: linear-gradient(135deg, var(--edl-icy), var(--edl-icy-2));
    box-shadow: 0 12px 26px rgba(173, 216, 236, 0.22);
}

.edl-footer__contact-item small {
    display: block;
    margin-bottom: 0.2rem;
    font-family: var(--font-title);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.48);
}

.edl-footer__contact-item a,
.edl-footer__contact-item p {
    margin: 0;
    color: var(--edl-white);
    font-size: 0.9rem;
    line-height: 1.45;
    text-decoration: none;
}

.edl-footer__contact-item a:hover {
    color: var(--edl-icy);
}

.edl-footer__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: 100%;
    min-height: 48px;
    margin-top: 1.2rem;
    padding: 0.8rem 1.25rem;
    border-radius: 999px;
    font-family: var(--font-title);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--edl-graphite);
    background: var(--edl-icy);
    box-shadow: var(--edl-shadow-icy);
    transition: transform .22s ease, background-color .22s ease, box-shadow .22s ease;
}

.edl-footer__cta:hover {
    color: var(--edl-graphite);
    background: var(--edl-icy-2);
    transform: translateY(-2px);
    box-shadow: 0 24px 50px rgba(173, 216, 236, 0.42);
}

.edl-footer__bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.16);
}

.edl-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    max-width: 1180px;
    margin: 0 auto;
    padding: 1.25rem 0;
}

.edl-footer__bottom p {
    margin: 0;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.58);
}

.edl-footer__badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.65rem;
}

.edl-footer__badges span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.42rem 0.72rem;
    border-radius: 999px;
    font-family: var(--font-title);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--edl-muted-light);
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.edl-footer__badges i {
    color: var(--edl-icy);
}

/* Responsive */

@media (max-width: 1024px) {
    .edl-footer__inner {
        grid-template-columns: 1.2fr 0.8fr 0.8fr;
    }

    .edl-footer__contact {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .edl-footer {
        padding-top: 4rem;
    }

    .edl-footer__inner {
        grid-template-columns: 1fr;
        gap: 2.2rem;
        padding-bottom: 3rem;
    }

    .edl-footer__brand {
        max-width: none;
    }

    .edl-footer__bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.4rem 0;
    }

    .edl-footer__badges {
        justify-content: flex-start;
    }
}

/* =========================================================
   ELIASSDEVLAND — BLOCKSY BLOG PREMIUM SKIN
   Keeps default Blocksy layout, card sizes, image fill & load more
   ========================================================= */

/* Page background */
body.blog,
body.archive,
body.search {
    background:
        radial-gradient(900px 420px at 8% 0%, rgba(173, 216, 236, 0.14), transparent 62%),
        radial-gradient(700px 380px at 90% 18%, rgba(195, 49, 73, 0.06), transparent 60%),
        var(--edl-light);
}

/* Main archive area */
body.blog #main.site-main,
body.archive #main.site-main,
body.search #main.site-main {
    background: transparent;
}

body.blog #main>.ct-container,
body.archive #main>.ct-container,
body.search #main>.ct-container {
    padding-top: clamp(3rem, 6vw, 5rem);
    padding-bottom: clamp(4rem, 7vw, 6rem);
}

/* =========================================================
   POST CARDS — do not touch width/height/image sizing
   ========================================================= */

body.blog .entry-card,
body.archive .entry-card,
body.search .entry-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px !important;
    background: rgba(255, 255, 255, 0.94) !important;
    border: 1px solid rgba(47, 45, 46, 0.07) !important;
    box-shadow:
        0 14px 34px rgba(31, 29, 31, 0.08),
        0 2px 8px rgba(31, 29, 31, 0.035),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
    transition:
        transform .24s ease,
        box-shadow .24s ease,
        border-color .24s ease;
}

/* subtle premium glow on hover */
body.blog .entry-card::before,
body.archive .entry-card::before,
body.search .entry-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(360px 120px at 20% 0%, rgba(173, 216, 236, 0.18), transparent 65%),
        radial-gradient(320px 120px at 100% 15%, rgba(195, 49, 73, 0.06), transparent 65%);
    opacity: 0;
    transition: opacity .24s ease;
}

body.blog .entry-card:hover,
body.archive .entry-card:hover,
body.search .entry-card:hover {
    transform: translateY(-5px);
    border-color: rgba(173, 216, 236, 0.42) !important;
    box-shadow:
        0 24px 60px rgba(31, 29, 31, 0.13),
        0 12px 30px rgba(173, 216, 236, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

body.blog .entry-card:hover::before,
body.archive .entry-card:hover::before,
body.search .entry-card:hover::before {
    opacity: 1;
}

/* Keep image behavior, only round the top corners */
body.blog .entry-card .ct-media-container,
body.archive .entry-card .ct-media-container,
body.search .entry-card .ct-media-container {
    border-radius: 22px 22px 0 0 !important;
    overflow: hidden;
}

/* Soft image polish only, no size/layout changes */
body.blog .entry-card .ct-media-container img,
body.archive .entry-card .ct-media-container img,
body.search .entry-card .ct-media-container img {
    transition: transform .42s ease, filter .42s ease;
}

body.blog .entry-card:hover .ct-media-container img,
body.archive .entry-card:hover .ct-media-container img,
body.search .entry-card:hover .ct-media-container img {
    transform: scale(1.035);
    filter: saturate(1.06) contrast(1.03);
}

/* Ensure content sits above card glow */
body.blog .entry-card>*:not(.ct-media-container),
body.archive .entry-card>*:not(.ct-media-container),
body.search .entry-card>*:not(.ct-media-container) {
    position: relative;
    z-index: 2;
}

/* Category pills */
body.blog .entry-card .meta-categories a,
body.archive .entry-card .meta-categories a,
body.search .entry-card .meta-categories a {
    border-radius: 999px !important;
    padding: 0.28rem 0.58rem !important;
    font-family: var(--font-title);
    font-size: 0.62rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--edl-graphite) !important;
    background: rgba(173, 216, 236, 0.72) !important;
    border: 1px solid rgba(143, 196, 222, 0.65);
    box-shadow: 0 8px 18px rgba(173, 216, 236, 0.18);
    transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

body.blog .entry-card .entry-meta .meta-categories a:hover,
body.archive .entry-card .entry-meta .meta-categories a:hover,
body.search .entry-card .entry-meta .meta-categories a:hover {
    color: #ffffff !important;
    background: var(--edl-cherry) !important;
    border-color: var(--edl-cherry) !important;
    transform: translateY(-1px);
}

/* Titles */
body.blog .entry-card .entry-title,
body.archive .entry-card .entry-title,
body.search .entry-card .entry-title {
    font-family: var(--font-title) !important;
    letter-spacing: -0.035em;
}

body.blog .entry-card .entry-title a,
body.archive .entry-card .entry-title a,
body.search .entry-card .entry-title a {
    color: var(--edl-graphite) !important;
    text-decoration: none;
    transition: color .2s ease;
}

body.blog .entry-card .entry-title a:hover,
body.archive .entry-card .entry-title a:hover,
body.search .entry-card .entry-title a:hover {
    color: var(--edl-cherry) !important;
}

/* Excerpt */
body.blog .entry-card .entry-excerpt,
body.archive .entry-card .entry-excerpt,
body.search .entry-card .entry-excerpt,
body.blog .entry-card .entry-excerpt p,
body.archive .entry-card .entry-excerpt p,
body.search .entry-card .entry-excerpt p {
    color: rgba(47, 45, 46, 0.62) !important;
}

/* Meta */
body.blog .entry-card .entry-meta,
body.archive .entry-card .entry-meta,
body.search .entry-card .entry-meta {
    color: rgba(47, 45, 46, 0.5) !important;
}

body.blog .entry-card .entry-meta a,
body.archive .entry-card .entry-meta a,
body.search .entry-card .entry-meta a,
body.blog .entry-card .entry-meta time,
body.archive .entry-card .entry-meta time,
body.search .entry-card .entry-meta time {
    color: rgba(47, 45, 46, 0.58) !important;
}

body.blog .entry-card .entry-meta a:hover,
body.archive .entry-card .entry-meta a:hover,
body.search .entry-card .entry-meta a:hover {
    color: var(--edl-cherry) !important;
}

body.blog .entry-card .meta-author img,
body.archive .entry-card .meta-author img,
body.search .entry-card .meta-author img {
    border-radius: 999px;
    border: 2px solid rgba(173, 216, 236, 0.7);
    box-shadow: 0 8px 18px rgba(31, 29, 31, 0.09);
}

/* =========================================================
   SIDEBAR
   ========================================================= */

body.blog #sidebar .ct-sidebar,
body.archive #sidebar .ct-sidebar,
body.search #sidebar .ct-sidebar {
    display: grid;
    gap: 1.35rem;
}

/* Sidebar widgets */
body.blog #sidebar .ct-widget,
body.archive #sidebar .ct-widget,
body.search #sidebar .ct-widget {
    position: relative;
    overflow: hidden;
    padding: 1.35rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(47, 45, 46, 0.07);
    box-shadow:
        0 16px 38px rgba(31, 29, 31, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

/* Sidebar widget subtle top glow */
body.blog #sidebar .ct-widget::before,
body.archive #sidebar .ct-widget::before,
body.search #sidebar .ct-widget::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(260px 110px at 10% 0%, rgba(173, 216, 236, 0.2), transparent 65%),
        radial-gradient(220px 110px at 100% 18%, rgba(195, 49, 73, 0.055), transparent 65%);
}

body.blog #sidebar .ct-widget>*,
body.archive #sidebar .ct-widget>*,
body.search #sidebar .ct-widget>* {
    position: relative;
    z-index: 1;
}

/* Sidebar headings */
body.blog #sidebar .ct-widget h1,
body.blog #sidebar .ct-widget h2,
body.blog #sidebar .ct-widget h3,
body.blog #sidebar .ct-widget h4,
body.blog #sidebar .ct-widget h5,
body.archive #sidebar .ct-widget h1,
body.archive #sidebar .ct-widget h2,
body.archive #sidebar .ct-widget h3,
body.archive #sidebar .ct-widget h4,
body.archive #sidebar .ct-widget h5,
body.search #sidebar .ct-widget h1,
body.search #sidebar .ct-widget h2,
body.search #sidebar .ct-widget h3,
body.search #sidebar .ct-widget h4,
body.search #sidebar .ct-widget h5 {
    margin-top: 0;
    font-family: var(--font-title) !important;
    font-size: 0.78rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--edl-graphite);
}

/* Recent posts sidebar */
body.blog #sidebar .wp-block-post,
body.archive #sidebar .wp-block-post,
body.search #sidebar .wp-block-post {
    padding: 0.78rem 0;
    border-bottom: 1px solid rgba(47, 45, 46, 0.075);
}

body.blog #sidebar .wp-block-post:first-child,
body.archive #sidebar .wp-block-post:first-child,
body.search #sidebar .wp-block-post:first-child {
    padding-top: 0;
}

body.blog #sidebar .wp-block-post:last-child,
body.archive #sidebar .wp-block-post:last-child,
body.search #sidebar .wp-block-post:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

/* Recent post thumbnails */
body.blog #sidebar .wp-block-post img,
body.archive #sidebar .wp-block-post img,
body.search #sidebar .wp-block-post img {
    border-radius: 999px !important;
    box-shadow:
        0 10px 22px rgba(31, 29, 31, 0.12),
        0 0 0 3px rgba(255, 255, 255, 0.8);
    transition: transform .22s ease, box-shadow .22s ease;
}

body.blog #sidebar .wp-block-post:hover img,
body.archive #sidebar .wp-block-post:hover img,
body.search #sidebar .wp-block-post:hover img {
    transform: scale(1.04);
    box-shadow:
        0 14px 30px rgba(31, 29, 31, 0.15),
        0 0 0 3px rgba(173, 216, 236, 0.65);
}

/* Sidebar post titles */
body.blog #sidebar .wp-block-post h2,
body.archive #sidebar .wp-block-post h2,
body.search #sidebar .wp-block-post h2 {
    font-family: var(--font-title) !important;
    letter-spacing: -0.02em !important;
    line-height: 1.22 !important;
}

body.blog #sidebar .wp-block-post h2 a,
body.archive #sidebar .wp-block-post h2 a,
body.search #sidebar .wp-block-post h2 a {
    color: var(--edl-graphite) !important;
    text-decoration: none;
    transition: color .2s ease;
}

body.blog #sidebar .wp-block-post h2 a:hover,
body.archive #sidebar .wp-block-post h2 a:hover,
body.search #sidebar .wp-block-post h2 a:hover {
    color: var(--edl-cherry) !important;
}

body.blog #sidebar .ct-dynamic-data,
body.archive #sidebar .ct-dynamic-data,
body.search #sidebar .ct-dynamic-data {
    color: rgba(47, 45, 46, 0.55) !important;
}

/* =========================================================
   PULLQUOTE SIDEBAR CARD
   ========================================================= */

body.blog #sidebar .wp-block-pullquote,
body.archive #sidebar .wp-block-pullquote,
body.search #sidebar .wp-block-pullquote {
    margin: 0 !important;
    padding: 2rem 1.6rem !important;
    border-radius: 24px !important;
    border: 0 !important;
    text-align: left;
    background:
        radial-gradient(340px 180px at 20% 0%, rgba(255, 255, 255, 0.22), transparent 62%),
        linear-gradient(155deg, var(--edl-icy), var(--edl-icy-2)) !important;
    color: var(--edl-white) !important;
    box-shadow:
        0 22px 52px rgba(143, 196, 222, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

body.blog #sidebar .wp-block-pullquote blockquote,
body.archive #sidebar .wp-block-pullquote blockquote,
body.search #sidebar .wp-block-pullquote blockquote {
    margin: 0;
}

body.blog #sidebar .wp-block-pullquote p,
body.archive #sidebar .wp-block-pullquote p,
body.search #sidebar .wp-block-pullquote p {
    margin: 0 0 1rem;
    font-family: var(--font-title);
    font-size: clamp(1.05rem, 1.4vw, 1.28rem);
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.035em;
    color: var(--edl-white) !important;
}

body.blog #sidebar .wp-block-pullquote cite,
body.archive #sidebar .wp-block-pullquote cite,
body.search #sidebar .wp-block-pullquote cite {
    display: block;
    margin-top: 0.8rem;
    font-family: var(--font-title);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78) !important;
}

/* =========================================================
   LOAD MORE / PAGINATION
   ========================================================= */

body.blog .ct-pagination,
body.archive .ct-pagination,
body.search .ct-pagination {
    margin-top: 2.5rem;
    text-align: center;
}

body.blog .ct-load-more,
body.archive .ct-load-more,
body.search .ct-load-more {
    min-height: 46px;
    padding: 0.78rem 1.55rem !important;
    border-radius: 999px !important;
    border: 0 !important;
    font-family: var(--font-title) !important;
    font-size: 0.74rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--edl-graphite) !important;
    background: linear-gradient(135deg, var(--edl-icy), var(--edl-icy-2)) !important;
    box-shadow: var(--edl-shadow-icy);
    transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

body.blog .ct-load-more:hover,
body.archive .ct-load-more:hover,
body.search .ct-load-more:hover {
    transform: translateY(-2px);
    filter: saturate(1.04);
    box-shadow: 0 24px 50px rgba(173, 216, 236, 0.42);
}

body.blog .ct-last-page-text,
body.archive .ct-last-page-text,
body.search .ct-last-page-text {
    margin-top: 1rem;
    color: rgba(47, 45, 46, 0.45);
    font-size: 0.82rem;
}

/* Number pagination, just in case visible */
body.blog .ct-pagination .page-numbers,
body.archive .ct-pagination .page-numbers,
body.search .ct-pagination .page-numbers {
    border-radius: 999px;
    font-family: var(--font-title);
    font-weight: 800;
}

/* =========================================================
   SMALL SCREENS
   ========================================================= */

@media (max-width: 767px) {

    body.blog .entry-card,
    body.archive .entry-card,
    body.search .entry-card {
        border-radius: 18px !important;
    }

    body.blog .entry-card .ct-media-container,
    body.archive .entry-card .ct-media-container,
    body.search .entry-card .ct-media-container {
        border-radius: 18px 18px 0 0 !important;
    }

    body.blog #sidebar .ct-widget,
    body.archive #sidebar .ct-widget,
    body.search #sidebar .ct-widget,
    body.blog #sidebar .wp-block-pullquote,
    body.archive #sidebar .wp-block-pullquote,
    body.search #sidebar .wp-block-pullquote {
        border-radius: 20px !important;
    }
}

/* Remove author + slash from Blocksy blog cards */
body.blog .entry-card .entry-meta .meta-author,
body.archive .entry-card .entry-meta .meta-author,
body.search .entry-card .entry-meta .meta-author {
    display: none !important;
}

/* Remove the slash/separator that appears after removing author */
body.blog .entry-card .entry-meta[data-type*="slash"] .meta-date::before,
body.archive .entry-card .entry-meta[data-type*="slash"] .meta-date::before,
body.search .entry-card .entry-meta[data-type*="slash"] .meta-date::before,
body.blog .entry-card .entry-meta .meta-date::before,
body.archive .entry-card .entry-meta .meta-date::before,
body.search .entry-card .entry-meta .meta-date::before {
    display: none !important;
    content: none !important;
}

/* Clean date spacing */
body.blog .entry-card .entry-meta .meta-date,
body.archive .entry-card .entry-meta .meta-date,
body.search .entry-card .entry-meta .meta-date {
    margin-left: 0 !important;
    padding-left: 0 !important;
}

/* Optional: hide the "On" label and keep only the date */
body.blog .entry-card .entry-meta .meta-date>span,
body.archive .entry-card .entry-meta .meta-date>span,
body.search .entry-card .entry-meta .meta-date>span {
    display: none !important;
}

/* Category archive title */
body.category .hero-section {
    margin-bottom: 2.8rem;
}

body.category .hero-section .page-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0;
    font-family: var(--font-title) !important;
    font-size: clamp(2.8rem, 5vw, 4.4rem);
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -0.065em;
    color: var(--edl-graphite);
}

body.category .hero-section .ct-title-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translateY(0.15rem);
    padding: 0.4rem 0.82rem;
    border-radius: 999px;
    font-family: var(--font-title);
    font-size: 0.68rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--edl-graphite);
    background: rgba(173, 216, 236, 0.78);
    border: 1px solid rgba(143, 196, 222, 0.7);
    box-shadow: 0 10px 24px rgba(173, 216, 236, 0.24);
}

/* Mobile */
@media (max-width: 767px) {
    body.category .hero-section .page-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        font-size: clamp(2.3rem, 13vw, 3.2rem);
    }

    body.category .hero-section .ct-title-label {
        transform: none;
    }
}

/* =========================================================
   ELIASSDEVLAND — SINGLE POST PAGE CLEANUP
   Keeps Blocksy hero/image layout intact
   ========================================================= */

/* Single post title in hero */
body.single-post .hero-section .page-title,
body.single-post .entry-header .page-title {
    font-family: var(--font-title) !important;
    font-weight: 800 !important;
    letter-spacing: -0.045em;
    line-height: 1.08;
}



/* Hide hero author */
body.single-post .hero-section .entry-meta .meta-author,
body.single-post .entry-header .entry-meta .meta-author {
    display: none !important;
}

/* Remove slash/separator before date */
body.single-post .hero-section .entry-meta .meta-date::before,
body.single-post .entry-header .entry-meta .meta-date::before,
body.single-post .hero-section .entry-meta[data-type*="slash"] .meta-date::before,
body.single-post .entry-header .entry-meta[data-type*="slash"] .meta-date::before {
    display: none !important;
    content: none !important;
}

/* Remove "On" label if Blocksy outputs it */
body.single-post .hero-section .entry-meta .meta-date>span,
body.single-post .entry-header .entry-meta .meta-date>span {
    display: none !important;
}

/* Center date under title */
body.single-post .hero-section .entry-meta,
body.single-post .entry-header .entry-meta {
    justify-content: center !important;
    text-align: center !important;
}

body.single-post .hero-section .entry-meta .meta-date,
body.single-post .entry-header .entry-meta .meta-date {
    margin: 0 !important;
    padding: 0 !important;
}

body.single-post .hero-section .entry-meta .meta-date time,
body.single-post .entry-header .entry-meta .meta-date time {
    font-family: var(--font-title);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82) !important;
}

/* =========================================================
   SINGLE POST CONTENT TEXT
   ========================================================= */

body.single-post .entry-content {
    font-family: var(--font-body) !important;
    color: var(--edl-graphite) !important;
}

body.single-post .entry-content p,
body.single-post .entry-content li {
    color: var(--edl-graphite) !important;
    font-family: var(--font-body) !important;
    font-size: 1rem;
    line-height: 1.85;
}

body.single-post .entry-content h1,
body.single-post .entry-content h2,
body.single-post .entry-content h3,
body.single-post .entry-content h4,
body.single-post .entry-content h5,
body.single-post .entry-content h6 {
    font-family: var(--font-title) !important;
    color: var(--edl-graphite) !important;
    letter-spacing: -0.035em;
}

/* Links inside article */
body.single-post .entry-content a {
    color: var(--edl-cherry);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

body.single-post .entry-content a:hover {
    color: var(--edl-cherry-2);
}

/* =========================================================
   SINGLE POST SIDEBAR — SAME VIBE AS BLOG SIDEBAR
   ========================================================= */

body.single-post #sidebar .ct-sidebar {
    display: grid;
    gap: 1.35rem;
}

body.single-post #sidebar .ct-widget {
    position: relative;
    overflow: hidden;
    padding: 1.35rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(47, 45, 46, 0.07);
    box-shadow:
        0 16px 38px rgba(31, 29, 31, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

body.single-post #sidebar .ct-widget::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(260px 110px at 10% 0%, rgba(173, 216, 236, 0.2), transparent 65%),
        radial-gradient(220px 110px at 100% 18%, rgba(195, 49, 73, 0.055), transparent 65%);
}

body.single-post #sidebar .ct-widget>* {
    position: relative;
    z-index: 1;
}

body.single-post #sidebar .ct-widget h1,
body.single-post #sidebar .ct-widget h2,
body.single-post #sidebar .ct-widget h3,
body.single-post #sidebar .ct-widget h4,
body.single-post #sidebar .ct-widget h5 {
    margin-top: 0;
    font-family: var(--font-title) !important;
    font-size: 0.78rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--edl-graphite);
}

/* Sidebar recent posts */
body.single-post #sidebar .wp-block-post {
    padding: 0.78rem 0;
    border-bottom: 1px solid rgba(47, 45, 46, 0.075);
}

body.single-post #sidebar .wp-block-post:first-child {
    padding-top: 0;
}

body.single-post #sidebar .wp-block-post:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

body.single-post #sidebar .wp-block-post img {
    border-radius: 999px !important;
    box-shadow:
        0 10px 22px rgba(31, 29, 31, 0.12),
        0 0 0 3px rgba(255, 255, 255, 0.8);
    transition: transform .22s ease, box-shadow .22s ease;
}

body.single-post #sidebar .wp-block-post:hover img {
    transform: scale(1.04);
    box-shadow:
        0 14px 30px rgba(31, 29, 31, 0.15),
        0 0 0 3px rgba(173, 216, 236, 0.65);
}

body.single-post #sidebar .wp-block-post h2 {
    font-family: var(--font-title) !important;
    letter-spacing: -0.02em !important;
    line-height: 1.22 !important;
}

body.single-post #sidebar .wp-block-post h2 a {
    color: var(--edl-graphite) !important;
    text-decoration: none;
    transition: color .2s ease;
}

body.single-post #sidebar .wp-block-post h2 a:hover {
    color: var(--edl-cherry) !important;
}

body.single-post #sidebar .ct-dynamic-data {
    color: rgba(47, 45, 46, 0.55) !important;
}

/* Sidebar quote card */
body.single-post #sidebar .wp-block-pullquote {
    margin: 0 !important;
    padding: 2rem 1.6rem !important;
    border-radius: 24px !important;
    border: 0 !important;
    text-align: left;
    background:
        radial-gradient(340px 180px at 20% 0%, rgba(255, 255, 255, 0.22), transparent 62%),
        linear-gradient(155deg, var(--edl-icy), var(--edl-icy-2)) !important;
    color: var(--edl-white) !important;
    box-shadow:
        0 22px 52px rgba(143, 196, 222, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

body.single-post #sidebar .wp-block-pullquote blockquote {
    margin: 0;
}

body.single-post #sidebar .wp-block-pullquote p {
    margin: 0 0 1rem;
    font-family: var(--font-title);
    font-size: clamp(1.05rem, 1.4vw, 1.28rem);
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.035em;
    color: var(--edl-white) !important;
}

body.single-post #sidebar .wp-block-pullquote cite {
    display: block;
    margin-top: 0.8rem;
    font-family: var(--font-title);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78) !important;
}

/* =========================================================
   HIDE COMMENTS
   ========================================================= */

body.single-post #comments,
body.single-post .comments-area,
body.single-post .ct-comments,
body.single-post .comment-respond,
body.single-post #respond {
    display: none !important;
}

/* Mobile */
@media (max-width: 767px) {

    body.single-post #sidebar .ct-widget,
    body.single-post #sidebar .wp-block-pullquote {
        border-radius: 20px !important;
    }
}

/* Remove final slash after single post date */
body.single-post .hero-section .entry-meta .meta-date::after,
body.single-post .entry-header .entry-meta .meta-date::after,
body.single-post .hero-section .entry-meta[data-type*="slash"] .meta-date::after,
body.single-post .entry-header .entry-meta[data-type*="slash"] .meta-date::after {
    display: none !important;
    content: none !important;
}

/* Single post: keep top category pill, remove category from date row */
body.single-post .hero-section .entry-header .entry-meta[data-id="second"] .meta-categories {
    display: none !important;
}