:root {
    --pyrneo-black: #000000;
    --pyrneo-white: #ffffff;
    --pyrneo-navy: #071552;
    --pyrneo-navy-2: #0b1b66;
    --pyrneo-blue: #1C38D2;
    --pyrneo-purple: #5746AD;
    --pyrneo-red: #D60A16;
    --pyrneo-green: #67C432;
    --pyrneo-muted: #a8b1d1;
    --pyrneo-surface: rgba(255,255,255,.06);
    --pyrneo-surface-strong: rgba(255,255,255,.1);
    --pyrneo-border: rgba(255,255,255,.14);
    --pyrneo-shadow: 0 28px 80px rgba(0,0,0,.38);
    --pyrneo-radius: 24px;
    --pyrneo-radius-sm: 16px;
    --container: 1200px;
    --font-heading: "Space Grotesk", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--pyrneo-white);
    background: var(--pyrneo-black);
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease, border-color .2s ease, transform .2s ease, background .2s ease; }
a:hover { color: var(--pyrneo-green); }
button, input, textarea, select { font: inherit; }

.container {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
}
.narrow-container { width: min(100% - 40px, 900px); }
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}
.skip-link:focus {
    clip: auto;
    clip-path: none;
    top: 12px;
    left: 12px;
    width: auto;
    height: auto;
    padding: 10px 14px;
    z-index: 1000;
    background: var(--pyrneo-white);
    color: var(--pyrneo-black);
    border-radius: 10px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.08;
    margin: 0 0 18px;
    letter-spacing: -.04em;
}
h1 { font-size: clamp(3rem, 7vw, 6.75rem); }
h2 { font-size: clamp(2.05rem, 4vw, 4rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
p { margin: 0 0 18px; color: var(--pyrneo-muted); }

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(0,0,0,.78);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner {
    min-height: 84px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
}
.site-branding img {
    width: 190px;
    max-height: 70px;
    object-fit: contain;
}
.fallback-logo img { border-radius: 0; }
.primary-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0;
    margin: 0;
    list-style: none;
}
.primary-menu a {
    display: block;
    padding: 10px 13px;
    border-radius: 999px;
    color: #dce3ff;
    font-size: .94rem;
    font-weight: 600;
}
.primary-menu a:hover,
.primary-menu .current-menu-item > a {
    background: rgba(28,56,210,.22);
    color: var(--pyrneo-white);
}
.nav-toggle { display: none; }

.btn,
.button,
.wp-block-button__link,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 13px 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 800;
    letter-spacing: -.01em;
    cursor: pointer;
}
.btn-primary,
.wp-block-button__link,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    color: var(--pyrneo-white) !important;
    background: linear-gradient(135deg, var(--pyrneo-blue), var(--pyrneo-purple));
    box-shadow: 0 18px 48px rgba(28,56,210,.34);
}
.btn-primary:hover,
.wp-block-button__link:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    transform: translateY(-2px);
    color: var(--pyrneo-white) !important;
}
.btn-secondary {
    border-color: var(--pyrneo-border);
    background: rgba(255,255,255,.06);
    color: var(--pyrneo-white);
}
.btn-secondary:hover { border-color: var(--pyrneo-green); color: var(--pyrneo-white); transform: translateY(-2px); }
.btn-header { background: rgba(103,196,50,.12); color: #eaffde; border: 1px solid rgba(103,196,50,.25); min-height: 42px; padding: 10px 16px; }
.btn-header:hover { background: rgba(103,196,50,.2); color: var(--pyrneo-white); }
.text-link { display: inline-flex; align-items: center; font-weight: 800; color: var(--pyrneo-green); }
.text-link::after { content: "→"; margin-left: 8px; }

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 84px);
    display: grid;
    align-items: center;
    padding: 110px 0 90px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 14%, rgba(103,196,50,.22), transparent 26%),
        radial-gradient(circle at 72% 18%, rgba(28,56,210,.35), transparent 30%),
        radial-gradient(circle at 82% 68%, rgba(214,10,22,.18), transparent 25%),
        linear-gradient(180deg, #000 0%, #020516 48%, #000 100%);
}
.hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 82%);
}
.hero-bg::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 260px;
    background:
        linear-gradient(to top, #000, transparent),
        repeating-linear-gradient(90deg, transparent 0 34px, rgba(28,56,210,.35) 35px 37px, transparent 38px 62px),
        linear-gradient(to top, rgba(28,56,210,.52), transparent);
    opacity: .5;
    clip-path: polygon(0 82%, 3% 74%, 6% 78%, 8% 59%, 10% 79%, 14% 68%, 18% 76%, 21% 52%, 23% 74%, 26% 66%, 30% 80%, 34% 57%, 38% 74%, 41% 50%, 45% 77%, 50% 61%, 54% 73%, 59% 47%, 62% 75%, 66% 60%, 70% 76%, 73% 45%, 77% 73%, 80% 50%, 84% 77%, 88% 58%, 92% 76%, 96% 64%, 100% 79%, 100% 100%, 0 100%);
}
.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .65fr);
    gap: 60px;
    align-items: center;
}
.brand-line {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    color: #dce3ff;
    text-transform: uppercase;
    letter-spacing: .28em;
    font-size: .78rem;
    font-weight: 800;
}
.brand-line span { color: var(--pyrneo-blue); letter-spacing: 0; }
.hero-lede { max-width: 760px; font-size: clamp(1.08rem, 1.7vw, 1.32rem); color: #d7defa; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-panel {
    display: grid;
    gap: 18px;
    padding: 20px;
    border: 1px solid var(--pyrneo-border);
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
    box-shadow: var(--pyrneo-shadow);
}
.signal-card {
    padding: 26px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(0,0,0,.38);
}
.signal-card span { display: block; color: var(--pyrneo-muted); font-weight: 900; margin-bottom: 12px; }
.signal-card strong { display: block; font-family: var(--font-heading); font-size: 1.42rem; margin-bottom: 8px; }
.signal-card p { margin-bottom: 0; }
.signal-card-green { border-left: 4px solid var(--pyrneo-green); }
.signal-card-blue { border-left: 4px solid var(--pyrneo-blue); }
.signal-card-red { border-left: 4px solid var(--pyrneo-red); }

.trust-strip { padding: 24px 0; background: rgba(7,21,82,.44); border-bottom: 1px solid rgba(255,255,255,.08); }
.trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.trust-grid div {
    color: #dfe6ff;
    text-align: center;
    padding: 13px 12px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 999px;
    background: rgba(255,255,255,.035);
    font-weight: 700;
    font-size: .92rem;
}

.section { padding: 105px 0; }
.section-heading { max-width: 900px; margin-bottom: 42px; }
.section-heading.narrow { max-width: 700px; }
.section-heading p { font-size: 1.06rem; }
.section-kicker {
    color: var(--pyrneo-green);
    text-transform: uppercase;
    letter-spacing: .22em;
    font-weight: 900;
    font-size: .76rem;
    margin-bottom: 14px;
}
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card,
.post-card,
.content-card,
.pyrneo-product-card,
.shop-hero,
.woocommerce div.product,
.woocommerce-cart-form,
.cart-collaterals .cart_totals,
.woocommerce-checkout-review-order,
.woocommerce-billing-fields,
.woocommerce-shipping-fields,
.woocommerce-additional-fields {
    border: 1px solid var(--pyrneo-border);
    border-radius: var(--pyrneo-radius);
    background: linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.035));
    box-shadow: 0 24px 70px rgba(0,0,0,.2);
}
.service-card { padding: 30px; min-height: 300px; display: flex; flex-direction: column; }
.service-card:hover,
.post-card:hover,
.pyrneo-product-card:hover { transform: translateY(-4px); border-color: rgba(103,196,50,.42); }
.service-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, rgba(28,56,210,.3), rgba(87,70,173,.22));
    color: var(--pyrneo-white);
    font-size: 1.5rem;
}
.service-card p { flex: 1; }

.readiness-section { padding: 72px 0; background: linear-gradient(135deg, rgba(28,56,210,.3), rgba(87,70,173,.2), rgba(103,196,50,.1)); border-block: 1px solid rgba(255,255,255,.08); }
.readiness-inner { display: grid; grid-template-columns: 1fr auto; gap: 34px; align-items: center; }
.readiness-inner h2 { margin-bottom: 12px; }
.readiness-inner p { max-width: 760px; margin-bottom: 0; color: #e6ebff; }

.industry-grid { display: flex; flex-wrap: wrap; gap: 13px; }
.industry-pill { padding: 14px 18px; border-radius: 999px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.11); color: #e6ebff; font-weight: 800; }

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.post-card { overflow: hidden; transition: transform .2s ease, border-color .2s ease; }
.post-card-image { display: block; aspect-ratio: 16/10; overflow: hidden; background: var(--pyrneo-navy); }
.post-card-image img { width: 100%; height: 100%; object-fit: cover; }
.post-card-body { padding: 28px; }
.post-meta { color: var(--pyrneo-green); font-size: .88rem; font-weight: 800; }
.placeholder-card { padding: 30px; }

.footer-cta { padding: 64px 0; background: linear-gradient(135deg, rgba(28,56,210,.24), rgba(87,70,173,.22)); border-block: 1px solid rgba(255,255,255,.08); }
.footer-cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 28px; }
.footer-cta h2 { max-width: 820px; margin-bottom: 0; }
.site-footer { background: #000; }
.footer-main { display: grid; grid-template-columns: 1.1fr 1.6fr; gap: 60px; padding: 70px 0; }
.footer-brand img { width: 230px; margin-bottom: 20px; }
.footer-tagline { color: #fff; font-weight: 800; letter-spacing: .08em; font-size: .84rem; }
.footer-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer-column h3, .footer-widget-title { font-size: 1.05rem; margin-bottom: 14px; }
.footer-column ul, .footer-widget ul, .footer-menu { list-style: none; padding: 0; margin: 0; }
.footer-column li, .footer-widget li { margin-bottom: 10px; }
.footer-column a, .footer-menu a { color: var(--pyrneo-muted); }
.footer-bottom { padding: 24px 0; border-top: 1px solid rgba(255,255,255,.09); display: flex; justify-content: space-between; gap: 24px; align-items: center; }
.footer-bottom p { margin: 0; }
.footer-menu { display: flex; gap: 18px; flex-wrap: wrap; }

.page-main { padding: 62px 0 105px; }
.pyrneo-breadcrumbs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; color: var(--pyrneo-muted); font-size: .92rem; }
.pyrneo-breadcrumbs a { color: #eaf0ff; }
.content-card { padding: clamp(26px, 5vw, 58px); }
.entry-header { max-width: 920px; margin-bottom: 32px; }
.entry-title { font-size: clamp(2.3rem, 5vw, 5.4rem); }
.entry-image { margin: 28px 0; overflow: hidden; border-radius: var(--pyrneo-radius); }
.entry-content { color: #dce3ff; }
.entry-content p, .entry-content li { color: #dce3ff; }
.entry-content a { color: var(--pyrneo-green); text-decoration: underline; text-underline-offset: 3px; }
.entry-content h2, .entry-content h3 { margin-top: 34px; }
.entry-content ul, .entry-content ol { padding-left: 1.25rem; }
.entry-content blockquote { margin: 30px 0; padding: 24px; border-left: 4px solid var(--pyrneo-blue); background: rgba(255,255,255,.05); border-radius: 0 var(--pyrneo-radius-sm) var(--pyrneo-radius-sm) 0; }

.search-form { display: flex; gap: 10px; max-width: 640px; }
.search-form label { flex: 1; }
.search-field,
.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select,
input[type="text"], input[type="email"], input[type="tel"], input[type="url"], input[type="password"], textarea, select {
    width: 100%;
    min-height: 48px;
    color: var(--pyrneo-white);
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 14px;
    padding: 13px 15px;
}
.search-submit { border: 0; background: var(--pyrneo-green); color: #061006; border-radius: 14px; font-weight: 900; padding: 0 18px; }

/* WooCommerce */
.pyrneo-shop-main { padding: 54px 0 105px; }
.shop-hero { padding: clamp(28px, 5vw, 54px); margin-bottom: 34px; }
.shop-hero h1 { font-size: clamp(2.2rem, 5vw, 5rem); }
.shop-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 18px; margin-bottom: 24px; }
.woocommerce ul.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 0 0 48px; padding: 0; }
.woocommerce ul.products li.product { float: none; width: auto !important; margin: 0 !important; list-style: none; }
.pyrneo-product-card { overflow: hidden; position: relative; transition: transform .2s ease, border-color .2s ease; }
.pyrneo-product-link { display: block; }
.pyrneo-product-image { aspect-ratio: 16/10; background: linear-gradient(135deg, rgba(28,56,210,.22), rgba(87,70,173,.16)); display: grid; place-items: center; overflow: hidden; }
.pyrneo-product-image img { width: 100%; height: 100%; object-fit: cover; }
.product-placeholder { font-family: var(--font-heading); font-size: 1.4rem; letter-spacing: .3em; color: rgba(255,255,255,.5); text-transform: uppercase; }
.pyrneo-product-body { padding: 24px 24px 10px; }
.product-kicker { color: var(--pyrneo-green); text-transform: uppercase; letter-spacing: .18em; font-weight: 900; font-size: .72rem; margin-bottom: 8px; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { color: #fff; padding: 0; margin: 0 0 10px; font-size: 1.25rem; }
.woocommerce ul.products li.product .price { color: #dfe6ff; font-weight: 800; }
.product-action { padding: 0 24px 24px; }
.product-action .button { width: 100%; }
.woocommerce div.product { padding: clamp(24px, 4vw, 46px); }
.woocommerce div.product div.images img { border-radius: 22px; background: rgba(255,255,255,.04); }
.woocommerce div.product .product_title { font-size: clamp(2rem, 4vw, 4.5rem); }
.woocommerce div.product p.price, .woocommerce div.product span.price { color: var(--pyrneo-green); font-weight: 900; font-size: 1.4rem; }
.pyrneo-product-note { margin-top: 22px; padding: 18px; border-radius: 16px; border: 1px solid rgba(103,196,50,.28); background: rgba(103,196,50,.1); color: #eaffde; }
.woocommerce-message, .woocommerce-info, .woocommerce-error { border-radius: 16px; background: rgba(255,255,255,.08); border-top-color: var(--pyrneo-blue); color: #fff; }
.woocommerce-message::before, .woocommerce-info::before { color: var(--pyrneo-green); }
.woocommerce table.shop_table { border-color: rgba(255,255,255,.12); border-radius: 16px; overflow: hidden; }
.woocommerce table.shop_table th, .woocommerce table.shop_table td { border-color: rgba(255,255,255,.1); color: #fff; }
.woocommerce-cart-form, .cart-collaterals .cart_totals, .woocommerce-checkout-review-order, .woocommerce-billing-fields, .woocommerce-shipping-fields, .woocommerce-additional-fields { padding: 24px; }
.woocommerce a.remove { color: var(--pyrneo-red) !important; }
.woocommerce a.remove:hover { background: var(--pyrneo-red); color: #fff !important; }

/* WordPress alignment helpers */
.alignwide { width: min(100%, 1180px); margin-inline: auto; }
.alignfull { width: 100vw; margin-left: calc(50% - 50vw); }
.wp-caption { max-width: 100%; }
.gallery { display: grid; gap: 12px; }

@media (max-width: 1080px) {
    .header-inner { grid-template-columns: auto auto 1fr; }
    .nav-toggle {
        display: inline-flex;
        flex-direction: column;
        gap: 5px;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--pyrneo-border);
        border-radius: 14px;
        background: rgba(255,255,255,.06);
        color: #fff;
        justify-self: end;
    }
    .nav-toggle-bar { width: 20px; height: 2px; background: #fff; display: block; }
    .main-navigation {
        display: none;
        position: absolute;
        top: 84px;
        left: 20px;
        right: 20px;
        padding: 18px;
        border: 1px solid var(--pyrneo-border);
        border-radius: 20px;
        background: rgba(0,0,0,.96);
        box-shadow: var(--pyrneo-shadow);
    }
    .main-navigation.is-open { display: block; }
    .primary-menu { display: grid; gap: 4px; justify-content: stretch; }
    .primary-menu a { border-radius: 12px; }
    .header-cta-wrap { justify-self: end; }
    .hero-inner, .readiness-inner, .footer-main { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .service-grid, .post-grid, .woocommerce ul.products { grid-template-columns: repeat(2, 1fr); }
    .footer-cta-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 720px) {
    .container { width: min(100% - 28px, var(--container)); }
    .site-branding img { width: 150px; }
    .header-cta-wrap { display: none; }
    .header-inner { min-height: 72px; grid-template-columns: auto auto; justify-content: space-between; }
    .main-navigation { top: 72px; }
    .hero-section { min-height: auto; padding: 70px 0; }
    .brand-line { letter-spacing: .14em; font-size: .68rem; }
    .hero-panel { padding: 12px; }
    .trust-grid, .service-grid, .post-grid, .footer-columns, .woocommerce ul.products { grid-template-columns: 1fr; }
    .readiness-inner .btn { width: 100%; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .shop-toolbar { flex-direction: column; align-items: flex-start; }
    .search-form { flex-direction: column; }
}

/* Pyrneo wordmark refinement */
.site-branding img,
.footer-brand img,
.login h1 a {
    object-fit: contain;
}
.site-branding img {
    width: 210px;
    max-height: 44px;
}
.footer-brand img {
    width: 260px;
    max-height: 54px;
}

/* Contact form */
.pyrneo-contact-card {
    display: grid;
    gap: 28px;
    margin-top: 24px;
    padding: clamp(24px, 5vw, 46px);
    border: 1px solid var(--pyrneo-border);
    border-radius: var(--pyrneo-radius);
    background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
    box-shadow: var(--pyrneo-shadow);
}
.pyrneo-contact-intro h2 { max-width: 820px; }
.pyrneo-contact-form { display: grid; gap: 18px; }
.pyrneo-contact-form p { margin: 0; }
.pyrneo-contact-form label {
    display: block;
    margin-bottom: 8px;
    color: #eef2ff;
    font-weight: 800;
}
.form-grid.two-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.pyrneo-form-notice {
    padding: 16px 18px;
    border-radius: 16px;
    font-weight: 800;
}
.pyrneo-form-success {
    color: #eaffde;
    background: rgba(103,196,50,.12);
    border: 1px solid rgba(103,196,50,.3);
}
.pyrneo-form-error {
    color: #ffe2e2;
    background: rgba(214,10,22,.12);
    border: 1px solid rgba(214,10,22,.3);
}
.pyrneo-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

@media (max-width: 720px) {
    .site-branding img { width: 165px; max-height: 38px; }
    .form-grid.two-columns { grid-template-columns: 1fr; }
}

/* Expanded AI service catalogue */
.service-card-enhanced {
    min-height: 430px;
}
.service-card-enhanced p {
    flex: unset;
}
.service-card-enhanced .text-link {
    margin-top: auto;
}
.service-icon svg,
.pyrneo-svg-icon {
    width: 30px;
    height: 30px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.service-outcome {
    padding: 14px 16px;
    border-radius: 16px;
    color: #edf2ff;
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.11);
    font-size: .94rem;
}
.service-outcome strong {
    color: var(--pyrneo-green);
}
.service-card-list,
.service-deliverables ul {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    display: grid;
    gap: 10px;
}
.service-card-list li,
.service-deliverables li {
    position: relative;
    padding-left: 24px;
    color: #dce3ff;
}
.service-card-list li::before,
.service-deliverables li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .72em;
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--pyrneo-green), var(--pyrneo-blue));
    box-shadow: 0 0 18px rgba(103,196,50,.35);
}
.services-landing-main .content-card {
    margin-bottom: 70px;
}
.services-landing-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .7fr);
    gap: 44px;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.services-landing-hero::before {
    content: "";
    position: absolute;
    inset: -1px;
    background:
        radial-gradient(circle at 18% 18%, rgba(103,196,50,.18), transparent 30%),
        radial-gradient(circle at 82% 20%, rgba(28,56,210,.24), transparent 32%),
        radial-gradient(circle at 76% 84%, rgba(214,10,22,.1), transparent 28%);
    pointer-events: none;
}
.services-landing-copy,
.services-value-panel {
    position: relative;
}
.services-landing-copy p {
    max-width: 860px;
}
.services-landing-actions {
    margin-top: 26px;
}
.services-value-panel {
    display: grid;
    gap: 16px;
}
.services-value-panel div {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: center;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    background: rgba(255,255,255,.055);
}
.services-value-panel strong,
.service-number {
    color: var(--pyrneo-green);
    font-weight: 900;
    letter-spacing: .12em;
}
.services-value-panel span {
    color: #eef2ff;
    font-weight: 800;
}
.service-detail-section {
    padding-bottom: 70px;
}
.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}
.service-detail-card {
    padding: clamp(24px, 4vw, 38px);
    border: 1px solid var(--pyrneo-border);
    border-radius: var(--pyrneo-radius);
    background: linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.035));
    box-shadow: 0 24px 70px rgba(0,0,0,.2);
}
.service-detail-card:hover {
    border-color: rgba(103,196,50,.42);
}
.service-detail-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: start;
    margin-bottom: 18px;
}
.service-detail-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 0;
}
.service-detail-text {
    color: #e6ebff;
    font-size: 1.02rem;
}
.service-number {
    margin: 0 0 6px;
    font-size: .8rem;
}
.service-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 24px 0;
}
.service-meta-grid > div,
.delivery-model-grid > div,
.single-service-summary {
    padding: 18px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 18px;
    background: rgba(255,255,255,.045);
}
.service-meta-grid h3,
.service-meta-grid h4,
.service-deliverables h3,
.service-deliverables h4 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 10px;
}
.service-meta-grid p {
    margin-bottom: 0;
}
.delivery-model-section {
    margin-top: 25px;
}
.delivery-model-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}
.delivery-model-grid strong {
    display: block;
    color: #fff;
    font-size: 1.04rem;
    margin-bottom: 8px;
}
.delivery-model-grid p {
    margin-bottom: 0;
    font-size: .94rem;
}
.services-final-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    margin-top: 70px;
    padding: clamp(28px, 5vw, 52px);
    border: 1px solid rgba(103,196,50,.2);
    border-radius: var(--pyrneo-radius);
    background: linear-gradient(135deg, rgba(28,56,210,.24), rgba(87,70,173,.2), rgba(103,196,50,.08));
}
.services-final-cta h2 {
    max-width: 820px;
}
.services-final-cta p:last-child {
    margin-bottom: 0;
}
.single-service-layout {
    display: grid;
    gap: 24px;
}
.single-service-summary {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: center;
}
.single-service-summary p {
    margin: 0;
    color: #e6ebff;
    font-size: 1.08rem;
}
.single-service-deliverables {
    padding: 22px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 18px;
    background: rgba(255,255,255,.04);
}
.pyrneo-chatbot-wrap {
    position: relative;
    z-index: 9999;
}

@media (max-width: 1020px) {
    .services-landing-hero,
    .service-detail-grid,
    .service-meta-grid {
        grid-template-columns: 1fr;
    }
    .delivery-model-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .services-final-cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 720px) {
    .service-card-enhanced {
        min-height: auto;
    }
    .services-value-panel div,
    .service-detail-header,
    .single-service-summary {
        grid-template-columns: 1fr;
    }
    .delivery-model-grid {
        grid-template-columns: 1fr;
    }
}
