



/* ============================================================
   UnboundPrint Homepage V2 — homepage-v2.css
   Requires: design-system-v2.css (--ub- tokens)
   BEM prefix: .hp2-
   ============================================================ */

/* ── Shared surface tokens (used by cards, dividers, quotes…) ── */
:root {
    --hp2-surface-border: 1px solid var(--ub-grey-medium);
    --hp2-surface-shadow: var(--ub-shadow-card);
}

/* ── PRODUCT CARD & SECTION OVERRIDES (v2 reskin) ─────────── */

.hp2-page .product-card-v2__button {
    background: var(--ub-magenta, #CE2984);
}
.hp2-page .product-card-v2__button:hover {
    background: #a82070;
    box-shadow: 0 4px 16px rgba(233, 30, 140, 0.3);
    transform: translateY(-1px);
}
.hp2-page .product-card-v2__price {
    color: var(--ub-navy, #00293D);
}
.hp2-page .product-card-v2__slideshow-arrow:hover {
    background-color: var(--ub-navy, #00293D);
}
.hp2-page .view-all-link {
    color: var(--ub-magenta, #CE2984);
    font-weight: 700;
}
.hp2-page .view-all-link:hover {
    color: #a82070;
}
.hp2-page .section-title {
    font-family: 'Rammetto One', serif;
    color: var(--ub-navy, #00293D);
    position: relative;
    padding-bottom: 12px;
    font-size: clamp(22px, 3vw, 32px);
}
.hp2-page .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 44px;
    height: 3px;
    background: var(--ub-magenta, #CE2984);
    border-radius: 2px;
}
.hp2-page .section-subtitle {
    color: #6b7280;
}
.hp2-page .product-grid-section {
    padding: 0 20px;
}
.hp2-page .product-grid-section--alt {
    background: #F0F4F8;
}


/* ── HERO REVISIONS (research-aligned) ──────────────────── */

.hp2-hero {
    background: #00293D url('/images/welcome/hero-bg.png') center center / cover no-repeat;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    width: calc(100% - 32px);
    max-width: 1280px;
    height: 558px;
    margin: 0 auto;
    border-radius: 12px;
}
/* ── HERO SLIDESHOW ─────────────────────────────────────── */
.hp2-hero--slideshow {
    background: #00293D; /* slides provide their own bg-image */
    display: block;      /* slides are absolute; flex not needed */
}
/* Base: all slides hidden, absolutely stacked */
.hp2-hero--slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: #00293D;
    display: flex;
    align-items: center;
    z-index: 0;
    opacity: 0;
}
.hp2-hero--slide-active {
    opacity: 1;
    z-index: 1;
}
/* Fade */
.hp2-hero--trans-fade .hp2-hero--slide {
    transition: opacity var(--hero-duration, 0.6s) ease;
}
/* Zoom */
.hp2-hero--trans-zoom .hp2-hero--slide {
    transform: scale(1.08);
    transition: opacity var(--hero-duration, 0.6s) ease,
                transform var(--hero-duration, 0.6s) ease;
}
.hp2-hero--trans-zoom .hp2-hero--slide-active {
    transform: scale(1);
}
/* Slide */
.hp2-hero--trans-slide .hp2-hero--slide {
    opacity: 1;
    transform: translateX(100%);
    transition: transform var(--hero-duration, 0.6s) ease;
}
.hp2-hero--trans-slide .hp2-hero--slide-active {
    transform: translateX(0);
    z-index: 2;
}
.hp2-hero--trans-slide .hp2-hero--slide-exit {
    transform: translateX(-100%);
    z-index: 1;
}
/* Ken Burns */
.hp2-hero--trans-ken-burns .hp2-hero--slide {
    transition: opacity var(--hero-duration, 0.6s) ease;
}
.hp2-hero--trans-ken-burns .hp2-hero--slide-active {
    animation: hp2-kenburns var(--hero-autoplay, 5s) ease-in-out infinite alternate;
}
@keyframes hp2-kenburns {
    from { transform: scale(1)    translate(0,     0); }
    to   { transform: scale(1.08) translate(-1.5%, -1.5%); }
}
.hp2-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 75% 40%, rgba(0,180,216,0.08) 0%, transparent 65%),
        radial-gradient(ellipse 50% 50% at 15% 85%, rgba(206,41,132,0.06) 0%, transparent 60%);
    pointer-events: none;
}
.hp2-hero__inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 44px 32px 40px;
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hp2-hero__eyebrow {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.5px;
    margin: 0 0 10px;
}
.hp2-hero__title {
    font-family: 'Rammetto One', serif;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.05;
    color: #ffffff;
    margin: 0 0 12px;
}
.hp2-hero__sub {
    font-size: 16px;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
    margin: 0 0 14px;
}
.hp2-hero__price {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    margin: 0 0 20px;
}
.hp2-hero__price strong {
    font-size: 26px;
    color: #CE2984;
    font-weight: 800;
}
.hp2-hero__price span {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}
.hp2-hero__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.hp2-hero__btn-primary {
    display: inline-flex;
    align-items: center;
    background: #CE2984;
    color: white;
    font-size: 15px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 9999px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}
.hp2-hero__btn-primary:hover {
    background: #a82070;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(206,41,132,0.35);
    color: white;
    text-decoration: none;
}
.hp2-hero__btn-secondary {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: white;
    font-size: 15px;
    font-weight: 600;
    padding: 11px 24px;
    border-radius: 9999px;
    border: 1.5px solid rgba(255,255,255,0.3);
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
    white-space: nowrap;
}
.hp2-hero__btn-secondary:hover {
    border-color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.07);
    color: white;
    text-decoration: none;
}
.hp2-hero__sla {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    margin: 0;
}
.hp2-hero__sla svg {
    color: var(--ub-bright-blue);
    stroke: var(--ub-bright-blue);
    flex-shrink: 0;
}
.hp2-hero__sla svg {
    color: #00B4D8;
    flex-shrink: 0;
}
.hp2-hero__image-col {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.hp2-hero__image-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.4);
    width: 100%;
    max-width: 400px;
}
.hp2-hero__img {
    display: block;
    height: 100%;
    max-height: 558px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

/* ── SOCIAL PROOF BAR ───────────────────────────────────── */

.hp2-proof-bar {
    background: #ffffff !important;
    padding: 0;
}
.hp2-proof-bar__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    border-bottom: 1px solid #e5e7eb;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0;
}
.hp2-proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 14px 36px;
    gap: 2px;
}
.hp2-proof-item__number {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 18px;
    font-weight: 800;
    color: #00293D;
    line-height: 1.2;
}
.hp2-proof-item__label {
    font-size: 12px;
    color: #6b7280;
}
.hp2-proof-bar__divider {
    width: 1px;
    height: 36px;
    background: #e5e7eb;
    flex-shrink: 0;
}

/* ── CATEGORY TILES: prices + color badges ───────────────── */

.hp2-cat-tile__top-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 6px;
    z-index: 2;
}
.hp2-cat-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 9999px;
    white-space: nowrap;
    backdrop-filter: blur(8px);
}
.hp2-cat-badge--price {
    background: rgba(206,41,132,0.92);
    color: white;
}
.hp2-cat-badge--colors {
    background: rgba(0,0,0,0.55);
    color: rgba(255,255,255,0.9);
}

/* ── CATEGORIES SECTION ─────────────────────────────────── */

.hp2-categories {
    background: #ffffff;
    padding: 44px 32px;
}
.hp2-categories__inner {
    max-width: 1280px;
    margin: 0 auto;
}
.hp2-categories__heading {
    font-family: 'Rammetto One', serif;
    font-size: clamp(20px, 2.5vw, 28px);
    color: #00293D;
    margin: 0 0 20px;
    text-align: center;
    line-height: 1.1;
}
.hp2-categories__grid {
    display: grid;
    gap: 16px;
}
/* ── Layout: 1 row, 6 columns ── $cat_layout = '1-row' */
.hp2-categories__grid--6col {
    grid-template-columns: repeat(6, 1fr);
}
/* ── Layout: 2 rows, 3 columns ── $cat_layout = '2-rows' */
.hp2-categories__grid--3col {
    grid-template-columns: repeat(3, 1fr);
}
/* ── Layout: featured-right — 4 small tiles (2×2) left + 1 big tile right */
.hp2-categories__grid--featured-right,
.hp2-categories__grid--featured {
    grid-template-columns: 1fr 1fr 2fr;
    grid-template-rows: 1fr 1fr;
}
.hp2-categories__grid--featured-right .hp2-cat-tile:last-child,
.hp2-categories__grid--featured .hp2-cat-tile:last-child {
    grid-column: 3;
    grid-row: 1 / span 2;
    aspect-ratio: unset;
}

/* ── Layout: featured-left — 1 big tile left + 4 small tiles (2×2) right */
.hp2-categories__grid--featured-left {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}
.hp2-categories__grid--featured-left .hp2-cat-tile:first-child {
    grid-column: 1;
    grid-row: 1 / span 2;
    aspect-ratio: unset;
}

/* ── Layout: wide-split — 1 square left + 1 wide landscape right */
.hp2-categories__grid--wide-split {
    grid-template-columns: 1fr 2fr;
}
.hp2-categories__grid--wide-split .hp2-cat-tile:last-child {
    aspect-ratio: 16/9;
}

/* ── Layout: wide-left — 1 wide landscape left + 1 square right */
.hp2-categories__grid--wide-left {
    grid-template-columns: 2fr 1fr;
}
.hp2-categories__grid--wide-left .hp2-cat-tile:first-child {
    aspect-ratio: 16/9;
}

/* ── Layout: duo-wide — 2 landscape tiles side by side */
.hp2-categories__grid--duo-wide {
    grid-template-columns: 1fr 1fr;
}
.hp2-categories__grid--duo-wide .hp2-cat-tile {
    aspect-ratio: 16/9;
}

.hp2-cat-tile {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1/1;
    cursor: pointer;
    text-decoration: none;
    display: block;
    background: #00293D center/cover no-repeat;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hp2-cat-tile:hover {
    transform: scale(1.02) translateY(-3px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.18);
    text-decoration: none;
}
.hp2-cat-tile__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.72) 100%);
}
.hp2-cat-tile__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.hp2-cat-tile__label {
    font-family: 'Rammetto One', serif;
    font-size: 22px;
    color: white;
    line-height: 1.1;
    margin: 0 0 4px;
}
.hp2-cat-tile__desc {
    font-size: 12px;
    color: rgba(255,255,255,0.72);
    margin: 0 0 12px;
}
.hp2-cat-tile__btn {
    display: inline-block;
    background: #CE2984;
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: 9999px;
    text-decoration: none;
    transition: background 0.2s;
}
.hp2-cat-tile__btn:hover {
    background: #a82070;
    color: white;
}

/* ── TRUST BAR (kept for backwards compat, hidden in v2) ── */
.hp2-trust-bar { display: none; }

/* ── SOCIAL PROOF (testimonials) ────────────────────────── */

.hp2-social-proof {
    background: #F0F4F8;
    padding: 20px 32px;
}
.hp2-social-proof__inner {
    max-width: 1280px;
    margin: 0 auto;
}
.hp2-social-proof__intro {
    text-align: center;
    margin-bottom: 28px;
}
.hp2-social-proof__headline {
    font-family: 'Rammetto One', serif;
    font-size: clamp(20px, 2.5vw, 28px);
    color: #00293D;
    margin: 0 0 8px;
    line-height: 1.1;
}
.hp2-social-proof .hp2-social-proof__cta,
.hp2-social-proof .hp2-social-proof__cta:hover,
.hp2-social-proof .hp2-social-proof__cta:visited {
    text-decoration: none;
}
.hp2-social-proof__cta {
    display: inline-block;
    margin-top: 14px;
    color: var(--ub-bright-blue);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.2s, transform 0.2s;
}
.hp2-social-proof__cta:hover {
    color: #0088cc;
    text-decoration: none;
    transform: translateX(4px);
}
.hp2-social-proof__subtext {
    font-size: 14px;
    color: #5a6475;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.55;
}
.hp2-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.hp2-testimonial {
    background: #fff;
    border-radius: 10px;
    text-align: center;
    padding: 20px;
    border: var(--hp2-surface-border);
    box-shadow: var(--hp2-surface-shadow);
}
.hp2-testimonial__stars {
    color: #CE2984;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.hp2-testimonial__quote::before { content: '\201C'; }
.hp2-testimonial__quote::after  { content: '\201D'; }
.hp2-testimonial__quote {
    font-size: 14px;
    color: #374151;
    line-height: 1.6;
    margin: 0 0 12px;
}
.hp2-testimonial__author {
    font-size: 13px;
    font-weight: 700;
    color: #00293D;
}
.hp2-testimonial__role {
    font-weight: 400;
    color: #9ca3af;
}

/* ── SOCIAL PROOF alt variant (Foto Grid 2) ────────────── */

.hp2-social-proof--alt,
.hp2-social-proof--quotes {
    background: #fff;
}
.hp2-social-proof--alt .hp2-social-proof__cta {
    color: #CE2984;
}
.hp2-social-proof--alt .hp2-social-proof__cta:hover {
    color: #a81f6a;
}

/* ── PHOTO GRID (social proof) ──────────────────────────── */

.hp2-photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
    margin-bottom: 16px;
    max-height: 420px;
}
.hp2-photo-grid__item {
    background-color: #d1d5db;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    min-height: 180px;
}
.hp2-photo-grid__item--tall {
    grid-row: span 2;
    min-height: 380px;
}
.hp2-photo-grid__badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(255,255,255,0.92);
    color: #00293D;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 9px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ── TESTIMONIAL AVATARS ────────────────────────────────── */

.hp2-testimonial__avatar {
    margin-bottom: 12px;
}
.hp2-testimonial__avatar img {
    width: 48px;
    height: 48px;
    display: block;
    margin: 0 auto;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f3f4f6;
    display: block;
}

/* ── HOW IT WORKS ───────────────────────────────────────── */

.hp2-how-it-works {
    background: #ffffff;
    padding: 44px 32px;
}
.hp2-how-it-works__inner {
    max-width: 960px;
    margin: 0 auto;
}
.hp2-how-it-works__headline {
    font-family: 'Rammetto One', serif;
    font-size: clamp(20px, 2.5vw, 28px);
    color: #00293D;
    text-align: center;
    margin: 0 0 32px;
    line-height: 1.1;
}
.hp2-steps {
    display: grid;
    grid-template-columns: 1fr 32px 1fr 32px 1fr;
    align-items: flex-start;
    gap: 0;
}
.hp2-step {
    text-align: center;
    padding: 0 8px;
}
.hp2-step__number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #CE2984;
    color: white;
    font-family: 'Rammetto One', serif;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    box-shadow: 0 3px 12px rgba(206,41,132,0.25);
}
.hp2-step__title {
    font-family: 'Rammetto One', serif;
    font-size: 14px;
    color: #00293D;
    margin: 0 0 6px;
    line-height: 1.2;
}
.hp2-step__desc {
    font-size: 13px;
    color: #5a6475;
    line-height: 1.55;
    max-width: 200px;
    margin: 0 auto;
}
.hp2-step-arrow {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 12px;
    color: #00B4D8;
    opacity: 0.5;
}

/* ── SUSTAINABILITY SECTION ─────────────────────────────── */

.hp2-sustain {
    background: #ffffff;
    padding: 44px 32px 0;
}
.hp2-sustain__inner {
    max-width: 1280px;
    margin: 0 auto;
}
.hp2-sustain__text {
    text-align: center;
    margin-bottom: 28px;
}
.hp2-sustain__headline {
    font-family: 'Rammetto One', serif;
    font-size: clamp(20px, 2.5vw, 28px);
    color: #00293D;
    margin: 0 0 12px;
    line-height: 1.1;
}
.hp2-sustain__cta {
    display: inline-block;
    margin-top: 14px;
    color: #CE2984;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none !important;
    transition: color 0.2s, transform 0.2s;
}
.hp2-sustain__cta:hover {
    color: #a82070;
    text-decoration: none !important;
    transform: translateX(4px);
}
.hp2-sustain__body {
    font-size: 15px;
    color: #5a6475;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.65;
}
.hp2-sustain__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}
.hp2-sustain__img {
    background-size: cover;
    background-position: center;
    background-color: #d1d5db;
    border-radius: 10px;
    min-height: 180px;
}
.hp2-sustain__img--tall {
    grid-column: 3;
    grid-row: 1 / span 2;
    aspect-ratio: unset;
    height: 100%;
}

/* ── TRUST COLUMNS ──────────────────────────────────────── */

.hp2-trust-cols {
    background: #00293D;
    padding: 44px 32px;
    width: calc(100% - 32px);
    max-width: 1280px;
    margin: 0 auto;
    border-radius: 12px;
    box-sizing: border-box;
}
.hp2-trust-cols__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.hp2-trust-cols__inner--2col { grid-template-columns: repeat(2, 1fr); }
.hp2-trust-cols__inner--3col { grid-template-columns: repeat(3, 1fr); }
.hp2-trust-cols__inner--4col { grid-template-columns: repeat(4, 1fr); }
.hp2-trust-col__icon {
    font-size: 28px;
    color: #00B4D8;
    margin-bottom: 12px;
    display: block;
}
.hp2-trust-col__title {
    font-family: 'Rammetto One', serif;
    font-size: 16px;
    color: #ffffff;
    margin: 0 0 8px;
    line-height: 1.25;
}
.hp2-trust-col__body {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    margin: 0;
}

/* ── WHATSAPP CTA ───────────────────────────────────────── */

.hp2-whatsapp-cta {
    background: #CE2984;
    padding: 44px 32px;
    text-align: center;
    width: calc(100% - 32px);
    max-width: 1280px;
    margin: 0 auto;
    border-radius: 12px;
    box-sizing: border-box;
}
.hp2-whatsapp-cta__inner {
    max-width: 560px;
    margin: 0 auto;
}
.hp2-whatsapp-cta__headline {
    font-family: 'Rammetto One', serif;
    font-size: clamp(22px, 3vw, 32px);
    color: white;
    margin: 0 0 10px;
    line-height: 1.1;
}
.hp2-whatsapp-cta__sub {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin: 0 0 20px;
    line-height: 1.5;
}
.hp2-whatsapp-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: #128C7E;
    font-size: 15px;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 9999px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    transition: transform 0.2s, box-shadow 0.2s;
}
.hp2-whatsapp-cta__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.2);
    color: #128C7E;
    text-decoration: none;
}
.hp2-whatsapp-cta__note {
    display: block;
    margin-top: 12px;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

/* Floating WhatsApp button now lives in brand-overrides.css (site-wide). */

/* ── RESPONSIVE ─────────────────────────────────────────── */

/* ── 1280px: cap content width (rounded corners kept at all widths) ── */
/* hero/trust-cols/whatsapp-cta use width: calc(100% - 32px) + max-width: 1280px
   so they always have a side gutter and never bleed to the viewport edge. */

/* ── 1024px: tablet landscape ──────────────────────────── */
@media (max-width: 1024px) {
    /* Hero */
    .hp2-hero {
        height: auto;
        min-height: 0;
    }
    /* Below 1024 the layout stacks — drop slide absolute positioning so the
       hero grows with content (min-height:0 + position:relative). Only the
       active slide is shown; cross-fade animation is sacrificed on mobile
       in exchange for correct natural height. */
    .hp2-hero--slide {
        position: relative;
        display: none;
        opacity: 1;
    }
    .hp2-hero--slide-active {
        display: flex;
    }
    .hp2-hero__inner {
        grid-template-columns: 1fr;
        gap: 32px;
        /* symmetric vertical padding so space above image ≈ space below button/sla */
        padding: 80px 24px 44px;
        text-align: center;
    }
    .hp2-hero__actions {
        justify-content: center;
    }
    .hp2-hero__sla {
        justify-content: center;
    }
    .hp2-hero__image-col {
        order: -1;
        max-width: 320px;
        margin: 0 auto;
        width: 100%;
    }

    /* Proof bar */
    .hp2-proof-item {
        padding: 12px 20px;
    }

    /* Categories */
    .hp2-categories__grid--6col {
        grid-template-columns: repeat(3, 1fr);
    }
    .hp2-categories__grid--featured-right,
    .hp2-categories__grid--featured,
    .hp2-categories__grid--featured-left {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: unset;
    }
    .hp2-categories__grid--featured-right .hp2-cat-tile:last-child,
    .hp2-categories__grid--featured .hp2-cat-tile:last-child,
    .hp2-categories__grid--featured-left .hp2-cat-tile:first-child {
        grid-column: unset;
        grid-row: unset;
        aspect-ratio: 1/1;
    }
    .hp2-categories__grid--wide-split .hp2-cat-tile:last-child,
    .hp2-categories__grid--wide-left .hp2-cat-tile:first-child,
    .hp2-categories__grid--duo-wide .hp2-cat-tile {
        aspect-ratio: 1/1;
    }

    /* Sustainability grid */
    .hp2-sustain__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: unset;
    }
    .hp2-sustain__img--tall {
        grid-column: unset;
        grid-row: unset;
        height: auto;
        min-height: 180px;
    }

    /* Trust columns */
    .hp2-trust-cols__inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* ── 768px: tablet portrait ────────────────────────────── */
@media (max-width: 768px) {
    .hp2-hero {
        height: auto;
        min-height: 0;
    }
    .hp2-hero__inner {
        /* symmetric vertical padding so space above image ≈ space below button/sla */
        padding: 72px 20px 36px;
        gap: 24px;
    }
    .hp2-hero__title {
        font-size: clamp(28px, 7vw, 40px);
    }
    .hp2-hero__sub {
        font-size: 15px;
    }
    .hp2-hero__price strong {
        font-size: 22px;
    }

    /* Proof bar — stack vertically, hide dividers */
    .hp2-proof-bar__inner {
        flex-direction: column;
        gap: 0;
        padding: 0 20px;
    }
    .hp2-proof-bar__divider {
        width: 80%;
        height: 1px;
    }
    .hp2-proof-item {
        padding: 12px 16px;
        width: 100%;
    }

    /* Categories */
    .hp2-categories {
        padding: 32px 16px;
    }
    .hp2-categories__grid--6col {
        grid-template-columns: repeat(2, 1fr);
    }
    .hp2-categories__grid--3col {
        grid-template-columns: repeat(2, 1fr);
    }
    .hp2-categories__grid--featured-right,
    .hp2-categories__grid--featured,
    .hp2-categories__grid--featured-left {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: unset;
    }
    .hp2-categories__grid--featured-right .hp2-cat-tile:last-child,
    .hp2-categories__grid--featured .hp2-cat-tile:last-child,
    .hp2-categories__grid--featured-left .hp2-cat-tile:first-child {
        grid-column: unset;
        grid-row: unset;
        aspect-ratio: 1/1;
    }
    .hp2-categories__grid--wide-split .hp2-cat-tile:last-child,
    .hp2-categories__grid--wide-left .hp2-cat-tile:first-child,
    .hp2-categories__grid--duo-wide .hp2-cat-tile {
        aspect-ratio: 1/1;
    }
    .hp2-cat-tile__label {
        font-size: 18px;
    }

    /* How it works — stack steps vertically, hide arrows */
    .hp2-how-it-works {
        padding: 32px 16px;
    }
    .hp2-steps {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .hp2-step-arrow {
        display: none;
    }

    /* Social proof / photo grid — 2 columns */
    .hp2-social-proof {
        padding: 32px 16px;
    }
    .hp2-photo-grid {
        grid-template-columns: repeat(2, 1fr);
        max-height: none;
    }
    .hp2-photo-grid__item--tall {
        grid-row: span 1;
        min-height: 160px;
    }
    .hp2-photo-grid__item {
        min-height: 140px;
    }

    /* Testimonials — single column */
    .hp2-testimonials {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Sustainability — 2 columns */
    .hp2-sustain {
        padding: 32px 16px 0;
    }
    .hp2-sustain__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: unset;
    }
    .hp2-sustain__img--tall {
        grid-column: unset;
        grid-row: unset;
        height: auto;
        min-height: 160px;
    }
    .hp2-sustain__img {
        min-height: 160px;
    }

    /* Trust columns — single column, centered content */
    .hp2-trust-cols {
        padding: 32px 16px;
    }
    .hp2-trust-col {
        text-align: center;
    }
    .hp2-trust-col__icon {
        margin-left: auto;
        margin-right: auto;
    }
    .hp2-trust-cols__inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* WhatsApp CTA */
    .hp2-whatsapp-cta {
        padding: 32px 16px;
    }
    .hp2-whatsapp-cta__headline {
        font-size: clamp(20px, 5vw, 28px);
    }

    /* Floating button rules moved to brand-overrides.css (site-wide) */
}

/* ── 480px: mobile landscape ────────────────────────────── */
@media (max-width: 480px) {
    .hp2-hero__image-col {
        max-width: 240px;
    }
    .hp2-hero__inner {
        padding: 36px 16px 28px;
        gap: 20px;
    }
    .hp2-hero__title {
        font-size: clamp(26px, 8vw, 36px);
    }
    .hp2-hero__btn-primary,
    .hp2-hero__btn-secondary {
        font-size: 14px;
        padding: 11px 20px;
    }
    .hp2-hero__actions {
        gap: 8px;
    }

    /* Proof bar */
    .hp2-proof-bar__inner {
        padding: 0 12px;
    }

    /* Categories — 1 column */
    .hp2-categories {
        padding: 28px 12px;
    }
    .hp2-categories__grid--6col,
    .hp2-categories__grid--3col,
    .hp2-categories__grid--featured-right,
    .hp2-categories__grid--featured,
    .hp2-categories__grid--featured-left,
    .hp2-categories__grid--wide-split,
    .hp2-categories__grid--wide-left,
    .hp2-categories__grid--duo-wide {
        grid-template-columns: 1fr;
        grid-template-rows: unset;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    .hp2-categories__grid--featured-right .hp2-cat-tile:last-child,
    .hp2-categories__grid--featured .hp2-cat-tile:last-child,
    .hp2-categories__grid--featured-left .hp2-cat-tile:first-child {
        grid-column: unset;
        grid-row: unset;
        aspect-ratio: 16/9;
    }
    .hp2-cat-tile {
        aspect-ratio: 16/9;
    }

    /* How it works */
    .hp2-how-it-works {
        padding: 28px 12px;
    }
    .hp2-step__desc {
        max-width: none;
    }

    /* Social proof */
    .hp2-social-proof {
        padding: 28px 12px;
    }
    .hp2-photo-grid {
        grid-template-columns: 1fr;
    }
    .hp2-photo-grid__item {
        min-height: 200px;
    }

    /* Sustainability — 1 column */
    .hp2-sustain {
        padding: 28px 12px 0;
    }
    .hp2-sustain__grid {
        grid-template-columns: 1fr;
    }
    .hp2-sustain__img,
    .hp2-sustain__img--tall {
        min-height: 200px;
    }

    /* Trust columns */
    .hp2-trust-cols {
        padding: 28px 12px;
    }

    /* WhatsApp CTA */
    .hp2-whatsapp-cta {
        padding: 28px 12px;
    }
    .hp2-whatsapp-cta__btn {
        font-size: 14px;
        padding: 11px 22px;
    }

    /* Floating button rules moved to brand-overrides.css (site-wide) */
}

/* ── 375px: mobile small ────────────────────────────────── */
@media (max-width: 375px) {
    .hp2-hero__inner {
        padding: 32px 12px 24px;
    }
    .hp2-hero__title {
        font-size: clamp(24px, 8.5vw, 32px);
    }
    .hp2-hero__actions {
        flex-direction: column;
        align-items: center;
    }
    .hp2-hero__btn-primary,
    .hp2-hero__btn-secondary {
        width: 100%;
        justify-content: center;
    }

    /* Proof bar */
    .hp2-proof-item__number {
        font-size: 16px;
    }
    .hp2-proof-item__label {
        font-size: 11px;
    }

    /* Categories */
    .hp2-categories {
        padding: 24px 12px;
    }
    .hp2-cat-tile__label {
        font-size: 16px;
    }
    .hp2-cat-tile__btn {
        font-size: 11px;
        padding: 6px 12px;
    }

    /* How it works */
    .hp2-how-it-works {
        padding: 24px 12px;
    }

    /* Social proof */
    .hp2-social-proof {
        padding: 24px 12px;
    }
    .hp2-testimonial {
        padding: 16px;
    }
    .hp2-testimonial__quote {
        font-size: 13px;
    }

    /* Sustainability */
    .hp2-sustain {
        padding: 24px 12px 0;
    }

    /* Trust columns */
    .hp2-trust-cols {
        padding: 24px 12px;
    }

    /* WhatsApp CTA */
    .hp2-whatsapp-cta {
        padding: 24px 12px;
    }
    .hp2-whatsapp-cta__sub {
        font-size: 13px;
    }
    .hp2-whatsapp-cta__btn {
        width: 100%;
        justify-content: center;
        font-size: 14px;
    }
}

/* ── FAQ Section ─────────────────────────────────────────────────────────── */
.hp2-faq {
    background: #ffffff;
    padding: 44px 32px;
}
.hp2-faq__inner {
    max-width: 1280px;
    margin: 0 auto;
}
.hp2-faq__heading {
    font-family: 'Rammetto One', serif;
    font-size: clamp(20px, 2.5vw, 28px);
    color: var(--ub-navy, #00293D);
    text-align: center;
    margin: 0 0 28px;
    line-height: 1.1;
}
/* If intro follows, keep heading→intro gap tight; intro then provides the list spacing */
.hp2-faq__heading:has(+ .hp2-faq__intro) {
    margin-bottom: 10px;
}
.hp2-faq__intro {
    text-align: center;
    color: #5a6475;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 32px;
}
.hp2-faq__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.hp2-faq__item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
}
.hp2-faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: #378ADD;
    border: none;
    text-align: left;
    font-family: 'Rammetto One', serif;
    font-size: 14px;
    color: #ffffff;
    cursor: pointer;
    transition: background 0.15s;
}
.hp2-faq__question:hover,
.hp2-faq__question[aria-expanded="true"] {
    background: var(--ub-magenta, #CE2984);
}
.hp2-faq__chevron {
    flex-shrink: 0;
    color: #ffffff;
    font-size: 12px;
    transition: transform 0.25s ease;
}
.hp2-faq__question[aria-expanded="true"] .hp2-faq__chevron {
    transform: rotate(-180deg);
}
.hp2-faq__answer {
    background: #ffffff;
}
.hp2-faq__answer-inner {
    padding: 14px 20px 18px;
    font-size: 15px;
    color: #5a6475;
    line-height: 1.65;
}
@media (max-width: 768px) {
    .hp2-faq {
        padding: 32px 16px;
    }
}

/* ── Media + Text split section ──────────────────────────────────────────── */
.hp2-media-text {
    padding: 48px 24px;
}
.hp2-media-text__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}
/* Vertical alignment of both columns — authors toggle this in admin */
.hp2-media-text--v-top    .hp2-media-text__text,
.hp2-media-text--v-top    .hp2-media-text__media  { align-self: start; }
.hp2-media-text--v-center .hp2-media-text__text,
.hp2-media-text--v-center .hp2-media-text__media  { align-self: center; }
.hp2-media-text--v-bottom .hp2-media-text__text,
.hp2-media-text--v-bottom .hp2-media-text__media  { align-self: end; }
/* Image side: text on the right swaps the grid-column on the image */
.hp2-media-text--text-right .hp2-media-text__media { grid-column: 1; grid-row: 1; }
.hp2-media-text--text-right .hp2-media-text__text  { grid-column: 2; grid-row: 1; }
.hp2-media-text__heading {
    font-family: 'Rammetto One', cursive, system-ui, sans-serif;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.15;
    color: var(--ub-text-primary, #00293D);
    font-size: 32px;
    margin: 0 0 16px;
}
.hp2-media-text__body {
    font-size: 16px;
    line-height: 1.65;
    color: var(--ub-text-primary, #00293D);
}
.hp2-media-text__body > p:first-child { margin-top: 0; }
.hp2-media-text__body > p:last-child  { margin-bottom: 0; }
.hp2-media-text__body h2,
.hp2-media-text__body h3,
.hp2-media-text__body h4 {
    font-family: 'Rammetto One', cursive, system-ui, sans-serif;
    font-weight: 400;
    margin: 1.2em 0 0.4em;
}
.hp2-media-text__body h2 { font-size: 24px; }
.hp2-media-text__body h3 { font-size: 20px; }
.hp2-media-text__body h4 { font-size: 17px; }
.hp2-media-text__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px 24px;
    border-radius: 9999px;
    background: var(--ub-magenta, #CE2984);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: background-color .2s ease;
}
.hp2-media-text__cta:hover { background: var(--ub-magenta-dark, #A82070); color: #fff; }
.hp2-media-text__media {
    display: grid;
    gap: 16px;
}
.hp2-media-text__media--single  { grid-template-columns: 1fr; }
.hp2-media-text__media--stack   { grid-template-columns: 1fr; }
.hp2-media-text__media--grid-2  { grid-template-columns: 1fr 1fr; }
/* Masonry: CSS columns flow items top-to-bottom then left-to-right, with
   break-inside:avoid keeping each <figure> intact. Images keep their
   native aspect ratio (no object-fit clipping), so tall portraits and
   wide landscapes slot together without cropping. */
.hp2-media-text__media--masonry-2,
.hp2-media-text__media--masonry-3 {
    display: block;
    column-gap: 16px;
}
.hp2-media-text__media--masonry-2 { column-count: 2; }
.hp2-media-text__media--masonry-3 { column-count: 3; }
.hp2-media-text__media--masonry-2 .hp2-media-text__fig,
.hp2-media-text__media--masonry-3 .hp2-media-text__fig {
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    margin-bottom: 16px;
    display: block;
}
.hp2-media-text__media--masonry-2 .hp2-media-text__fig img,
.hp2-media-text__media--masonry-3 .hp2-media-text__fig img {
    object-fit: unset;
}
.hp2-media-text__fig {
    margin: 0;
    overflow: hidden;
    border-radius: 12px;
    background: var(--ub-surface-alt, #F0F4F8);
}
.hp2-media-text__fig img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}
@media (max-width: 768px) {
    .hp2-media-text { padding: 32px 16px; }
    .hp2-media-text__inner { grid-template-columns: 1fr; gap: 24px; padding: 0 16px; }
    .hp2-media-text--text-right .hp2-media-text__media,
    .hp2-media-text--text-right .hp2-media-text__text { grid-column: 1; grid-row: auto; }
    .hp2-media-text__heading { font-size: 26px; }
    .hp2-media-text__media--grid-2 { grid-template-columns: 1fr 1fr; }
    .hp2-media-text__media--masonry-3 { column-count: 2; }
}
@media (max-width: 480px) {
    .hp2-media-text__media--masonry-2,
    .hp2-media-text__media--masonry-3 { column-count: 1; }
}

/* ── Video section ───────────────────────────────────────────────────────── */
.hp2-video { padding: 48px 24px; }
.hp2-video__inner { max-width: 960px; margin: 0 auto; }
.hp2-video__intro { text-align: center; margin-bottom: 24px; }
.hp2-video__heading {
    font-family: 'Rammetto One', cursive, system-ui, sans-serif;
    font-weight: 400;
    font-size: 28px;
    margin: 0 0 8px;
    color: var(--ub-text-primary, #00293D);
}
.hp2-video__subtext { color: var(--ub-text-muted, #6B7A99); font-size: 15px; }
.hp2-video__frame {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 4px 16px rgba(0, 41, 61, 0.15);
}
.hp2-video__frame iframe,
.hp2-video__frame video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    border: 0; display: block;
}

/* ── Comparison section ──────────────────────────────────────────────────── */
.hp2-compare { padding: 48px 24px; }
.hp2-compare__inner { max-width: 1080px; margin: 0 auto; }
.hp2-compare__intro { text-align: center; margin-bottom: 28px; }
.hp2-compare__heading {
    font-family: 'Rammetto One', cursive, system-ui, sans-serif;
    font-weight: 400;
    font-size: 28px;
    margin: 0 0 8px;
    color: var(--ub-text-primary, #00293D);
}
.hp2-compare__subtext { color: var(--ub-text-muted, #6B7A99); font-size: 15px; }
.hp2-compare__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.hp2-compare__col {
    background: #fff;
    border: 1px solid var(--ub-border, #D6DCE8);
    border-radius: 12px;
    padding: 24px 28px;
    box-shadow: 0 2px 6px rgba(0, 41, 61, 0.04);
}
.hp2-compare__col--positive { border-color: #9ED9B0; background: #F4FBF6; }
.hp2-compare__col--negative { border-color: #F3B3B3; background: #FDF5F5; }
.hp2-compare__col-heading {
    font-family: 'Rammetto One', cursive, system-ui, sans-serif;
    font-size: 20px;
    margin: 0 0 16px;
}
.hp2-compare__list { list-style: none; padding: 0; margin: 0; }
.hp2-compare__item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 8px 0;
    font-size: 15px;
    color: var(--ub-text-primary, #00293D);
}
.hp2-compare__item i { margin-top: 3px; }
.hp2-compare__col--positive .hp2-compare__item i { color: #2F9D5A; }
.hp2-compare__col--negative .hp2-compare__item i { color: #B91C1C; }
.hp2-compare__col--neutral  .hp2-compare__item i { color: #6B7A99; }
@media (max-width: 768px) {
    .hp2-compare__grid { grid-template-columns: 1fr; }
}

/* ── Trust badges section ────────────────────────────────────────────────── */
.hp2-trust { padding: 32px 24px; }
.hp2-trust__inner { max-width: 1080px; margin: 0 auto; }
.hp2-trust__heading {
    font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--ub-text-muted, #6B7A99);
    margin: 0 0 16px;
}
.hp2-trust--left   .hp2-trust__heading,
.hp2-trust--left   .hp2-trust__row { justify-content: flex-start; text-align: left; }
.hp2-trust--right  .hp2-trust__heading,
.hp2-trust--right  .hp2-trust__row { justify-content: flex-end; text-align: right; }
.hp2-trust--center .hp2-trust__heading,
.hp2-trust--center .hp2-trust__row { justify-content: center; text-align: center; }
.hp2-trust__subtext { font-size: 14px; color: var(--ub-text-muted, #6B7A99); margin-bottom: 16px; }
.hp2-trust__row {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: center;
}
.hp2-trust__badge { margin: 0; }
.hp2-trust__badge img {
    max-height: 40px;
    width: auto;
    display: block;
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
/* Same lift + soft shadow as the pricing-plan cards, so hover behaviour
   is consistent across interactive content tiles. */
.hp2-trust__badge img:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 41, 61, 0.10);
    opacity: 1;
}
.hp2-trust--grayscale .hp2-trust__badge img {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease, filter .2s ease;
}
.hp2-trust--grayscale .hp2-trust__badge img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* ── Pricing section ─────────────────────────────────────────────────────── */
.hp2-pricing { padding: 56px 24px; }
.hp2-pricing__inner { max-width: 1200px; margin: 0 auto; }
.hp2-pricing__intro { text-align: center; margin-bottom: 32px; }
.hp2-pricing__heading {
    font-family: 'Rammetto One', cursive, system-ui, sans-serif;
    font-weight: 400;
    font-size: 32px;
    margin: 0 0 8px;
    color: var(--ub-text-primary, #00293D);
}
.hp2-pricing__subtext { color: var(--ub-text-muted, #6B7A99); font-size: 15px; }
.hp2-pricing__grid { display: grid; gap: 24px; }
.hp2-pricing__grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.hp2-pricing__grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.hp2-pricing__grid--cols-4 { grid-template-columns: repeat(4, 1fr); }
.hp2-pricing__plan {
    background: #fff;
    border: 1px solid var(--ub-border, #D6DCE8);
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    transition: transform .2s ease, box-shadow .2s ease;
}
.hp2-pricing__plan:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 41, 61, 0.10);
}
.hp2-pricing__plan--highlight {
    border: 2px solid var(--ub-magenta, #CE2984);
    box-shadow: 0 8px 24px rgba(206, 41, 132, 0.15);
}
.hp2-pricing__flag {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--ub-magenta, #CE2984);
    color: #fff;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 9999px;
}
.hp2-pricing__name {
    font-family: 'Rammetto One', cursive, system-ui, sans-serif;
    font-size: 20px;
    margin: 0;
    color: var(--ub-text-primary, #00293D);
}
.hp2-pricing__price { margin: 8px 0; display: flex; align-items: baseline; gap: 6px; }
.hp2-pricing__price-amount {
    font-size: 36px; font-weight: 700; color: var(--ub-text-primary, #00293D);
}
.hp2-pricing__price-suffix { font-size: 14px; color: var(--ub-text-muted, #6B7A99); }
.hp2-pricing__desc { margin: 0 0 12px; color: var(--ub-text-muted, #6B7A99); font-size: 14px; }
.hp2-pricing__features { list-style: none; padding: 0; margin: 0 0 16px; flex: 1; }
.hp2-pricing__features li {
    display: flex; gap: 8px; align-items: flex-start;
    padding: 6px 0;
    font-size: 14px;
}
.hp2-pricing__features li i { color: #2F9D5A; margin-top: 4px; }
.hp2-pricing__cta {
    display: inline-flex;
    align-items: center; justify-content: center;
    padding: 12px 20px;
    border-radius: 9999px;
    background: var(--ub-magenta, #CE2984);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: background-color .2s ease;
}
.hp2-pricing__cta:hover { background: var(--ub-magenta-dark, #A82070); color: #fff; }
@media (max-width: 900px) {
    .hp2-pricing__grid--cols-3,
    .hp2-pricing__grid--cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .hp2-pricing__grid--cols-2,
    .hp2-pricing__grid--cols-3,
    .hp2-pricing__grid--cols-4 { grid-template-columns: 1fr; }
}

/* ── Timeline section ────────────────────────────────────────────────────── */
.hp2-timeline { padding: 48px 24px; }
.hp2-timeline__inner { max-width: 820px; margin: 0 auto; }
.hp2-timeline__intro { text-align: center; margin-bottom: 32px; }
.hp2-timeline__heading {
    font-family: 'Rammetto One', cursive, system-ui, sans-serif;
    font-weight: 400;
    font-size: 28px;
    margin: 0 0 8px;
}
.hp2-timeline__subtext { color: var(--ub-text-muted, #6B7A99); font-size: 15px; }
.hp2-timeline__list {
    list-style: none;
    padding: 0; margin: 0;
    position: relative;
}
.hp2-timeline__list::before {
    content: "";
    position: absolute;
    left: 15px; top: 8px; bottom: 8px;
    width: 2px;
    background: var(--ub-border, #D6DCE8);
}
.hp2-timeline__item {
    position: relative;
    padding-left: 56px;
    padding-bottom: 28px;
}
.hp2-timeline__item:last-child { padding-bottom: 0; }
.hp2-timeline__dot {
    position: absolute;
    left: 4px; top: 2px;
    width: 24px; height: 24px;
    border-radius: 999px;
    background: var(--ub-magenta, #CE2984);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    box-shadow: 0 0 0 4px #fff;
}
.hp2-timeline__label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ub-magenta, #CE2984);
    margin: 0 0 4px;
}
.hp2-timeline__title {
    font-family: 'Rammetto One', cursive, system-ui, sans-serif;
    font-size: 18px;
    margin: 0 0 6px;
    color: var(--ub-text-primary, #00293D);
}
.hp2-timeline__desc { font-size: 15px; color: var(--ub-text-primary, #00293D); line-height: 1.55; }

/* ── Carousel section ────────────────────────────────────────────────────── */
.hp2-carousel { padding: 48px 24px; }
.hp2-carousel__inner { max-width: 1200px; margin: 0 auto; }
.hp2-carousel__intro { text-align: center; margin-bottom: 24px; }
.hp2-carousel__heading {
    font-family: 'Rammetto One', cursive, system-ui, sans-serif;
    font-weight: 400;
    font-size: 28px;
    margin: 0 0 8px;
}
.hp2-carousel__subtext { color: var(--ub-text-muted, #6B7A99); font-size: 15px; }
.hp2-carousel__viewport {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: var(--ub-surface-alt, #F0F4F8);
}
.hp2-carousel__track {
    display: flex;
    transition: transform .45s ease;
    will-change: transform;
}
.hp2-carousel__slide {
    flex: 0 0 100%;
    min-width: 0;
}
/* Lock every slide to the same aspect ratio so the viewport height stays
   constant as the track slides — mixed landscape/portrait uploads no
   longer leave grey bars where a shorter image doesn't fill the frame. */
.hp2-carousel__fig {
    display: block;
    position: relative;
    text-decoration: none;
    color: inherit;
    margin: 0;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 480px;
    overflow: hidden;
}
.hp2-carousel__fig img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hp2-carousel__caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 12px 20px;
    background: linear-gradient(transparent, rgba(0, 41, 61, 0.7));
    color: #fff;
    font-size: 14px;
}
.hp2-carousel__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px; height: 44px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--ub-border, #D6DCE8);
    box-shadow: 0 4px 12px rgba(0, 41, 61, 0.12);
    color: var(--ub-text-primary, #00293D);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color .15s ease;
}
.hp2-carousel__nav:hover { background: var(--ub-magenta, #CE2984); color: #fff; border-color: var(--ub-magenta, #CE2984); }
.hp2-carousel__nav--prev { left: 12px; }
.hp2-carousel__nav--next { right: 12px; }
.hp2-carousel__dots {
    display: flex; gap: 8px;
    justify-content: center;
    margin-top: 16px;
}
.hp2-carousel__dot {
    width: 10px; height: 10px;
    border-radius: 999px;
    background: var(--ub-border, #D6DCE8);
    border: 0;
    padding: 0;
    cursor: pointer;
    transition: background-color .15s ease, transform .15s ease;
}
.hp2-carousel__dot.is-active {
    background: var(--ub-magenta, #CE2984);
    transform: scale(1.2);
}

/* ── Basic content sections: Paragraph / List / Icon ────────────────────── */
.hp2-paragraph,
.hp2-list,
.hp2-icon {
    padding: 0 24px;
}
.hp2-paragraph__inner,
.hp2-list__inner,
.hp2-icon__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 8px 40px;
}
.hp2-paragraph__text {
    font-size: 16px;
    line-height: 1.65;
    color: var(--ub-text-primary, #00293D);
}
.hp2-paragraph__text > p {
    margin: 0 0 1em;
}
.hp2-paragraph__text > p:last-child {
    margin-bottom: 0;
}
/* Headings inside paragraph-section HTML. The CMS editor now lets
   authors insert H2/H3 inside the text; without these rules they
   fell back to browser defaults and didn't match the display font
   used elsewhere on the site. */
.hp2-paragraph__text h2,
.hp2-paragraph__text h3,
.hp2-paragraph__text h4 {
    font-family: 'Rammetto One', cursive, system-ui, sans-serif;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.15;
    color: var(--ub-text-primary, #00293D);
    margin: 1.5em 0 0.5em;
}
.hp2-paragraph__text h2 { font-size: 28px; }
.hp2-paragraph__text h3 { font-size: 22px; }
.hp2-paragraph__text h4 { font-size: 18px; }
.hp2-paragraph__text > h2:first-child,
.hp2-paragraph__text > h3:first-child,
.hp2-paragraph__text > h4:first-child {
    margin-top: 0;
}
.hp2-paragraph__text ul,
.hp2-paragraph__text ol {
    margin: 0 0 1em;
    padding-left: 1.5em;
}
.hp2-paragraph__text li {
    margin-bottom: 0.35em;
}

/* Read-more: collapsed state clamps to N lines (from --hp2-clamp-lines) with a fade */
.hp2-paragraph[data-readmore-state="collapsed"] .hp2-paragraph__text {
    display: -webkit-box;
    -webkit-line-clamp: var(--hp2-clamp-lines, 5);
    line-clamp: var(--hp2-clamp-lines, 5);
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
            mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
}
.hp2-paragraph[data-readmore-state="expanded"] .hp2-paragraph__text {
    -webkit-mask-image: none;
            mask-image: none;
}
.hp2-paragraph__toggle {
    margin-top: 12px;
    padding: 0;
    background: transparent;
    border: none;
    color: var(--ub-magenta, #CE2984);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.hp2-paragraph__toggle:hover {
    color: var(--ub-magenta-dark, #a82070);
}

/* ── Heading section — no card outline, display font ──────────────────── */
.hp2-heading {
    padding: 0 24px;
}
.hp2-heading__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}
.hp2-heading__title {
    margin: 0;
    font-family: 'Rammetto One', cursive, system-ui, sans-serif;
    font-weight: 400;
    color: var(--ub-text-primary, #00293D);
    line-height: 1.15;
    letter-spacing: -0.01em;
}
.hp2-heading h2.hp2-heading__title { font-size: clamp(24px, 3vw, 32px); }
.hp2-heading h3.hp2-heading__title { font-size: clamp(20px, 2.4vw, 26px); }
.hp2-heading h4.hp2-heading__title { font-size: clamp(18px, 2vw, 22px); }
.hp2-heading h5.hp2-heading__title { font-size: clamp(16px, 1.8vw, 19px); }
.hp2-list__items {
    margin: 0;
    padding-left: 24px;
}
.hp2-list__items li {
    margin-bottom: 6px;
    line-height: 1.6;
}
.hp2-icon__inner i {
    font-size: 32px;
    color: var(--ub-navy, #00293D);
}
@media (max-width: 768px) {
    .hp2-paragraph,
    .hp2-heading,
    .hp2-list,
    .hp2-icon {
        padding: 0 16px;
    }
    .hp2-paragraph__inner,
    .hp2-list__inner,
    .hp2-icon__inner {
        padding: 4px 20px;
    }
    .hp2-heading__inner {
        padding: 0 10px;
    }
}

/* ── Divider Section ─────────────────────────────────────────────────────── */
.hp2-divider {
    padding: 0 24px;
}
.hp2-divider__inner {
    max-width: 1280px;
    margin: 0 auto;
    background: #fff;
    border: var(--hp2-surface-border);
    border-radius: 12px;
    box-shadow: var(--hp2-surface-shadow);
    padding: 14px 32px;
    text-align: center;
}
.hp2-divider__title {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: var(--ub-text-primary, #00293D);
    letter-spacing: -0.01em;
    text-transform: none;
}
@media (max-width: 768px) {
    .hp2-divider {
        padding: 0 16px;
    }
    .hp2-divider__inner {
        padding: 10px 20px;
    }
    .hp2-divider__title {
        font-size: 18px;
    }
}
