:root {
    --orange: #F47A2E;
    --charcoal: #2E2E2E;
    --offwhite: #F5F1EA;
    --softblack: #1C1C1C;
    --muted-gold: #AF7F4B;
    --midgrey: #A0A0A0;
    --white: #fff;
    --container: 1200px;
    --radius-2xl: 22px;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, .08)
}
* {
    box-sizing: border-box
}
html, body {
    margin: 0;
    padding: 0;
    background: var(--offwhite);
    color: var(--softblack);
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6
}
a {
    color: inherit;
    text-decoration: none
}
img {
    max-width: 100%;
    display: block
}
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px
}
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(245, 241, 234, .85);
    backdrop-filter: saturate(140%) blur(6px);
    border-bottom: 1px solid rgba(0, 0, 0, .06)
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 20px;
}
.brand img {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    object-fit: cover;
    background: #fff
}
.brand span {
    font-weight: 800;
    letter-spacing: .3px
}
.menu {
    display: flex;
    gap: 22px;
    align-items: center
}
.menu a {
    font-weight: 600;
    opacity: .9
}
.cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: #fff;
    padding: 10px 16px;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: var(--shadow-soft)
}
.cta.secondary.white {
    background: transparent;
    color: var(--offwhite);
    border: 1.5px solid var(--offwhite)
}
.cta.secondary {
    background: transparent;
    color: var(--charcoal);
    border: 1.5px solid var(--offwhite)
}
/* Hero as full-bleed background slider */
.hero{position:relative; isolation:isolate; overflow:hidden}
.hero .hero-inner{position:relative; z-index:2}

.hero-bg{
  position:absolute; inset:0; z-index:1; pointer-events:none;
}
.hero-bg::after{
  /* soft gradient for legibility */
  content:""; position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(28,28,28,.45), rgba(28,28,28,.25) 30%, rgba(28,28,28,.55));
}

/* reuse gallery but make it fill */
.hero-bg .banner-gallery{position:absolute; inset:0; padding:0; gap:0; overflow:hidden}
.hero-bg .banner-gallery-track{display:flex; align-items:center; gap:10px; will-change:transform; height:100%}
.hero-bg img{
  height:100%; width:auto; object-fit:cover; flex:0 0 auto; border-radius:0;
  filter: saturate(1.05) contrast(1.02);
  opacity:.9;
}
@media (max-width:700px){
  .hero{padding-top:30px}
  .hero-bg::after{background:linear-gradient(180deg, rgba(28,28,28,.55), rgba(28,28,28,.35) 30%, rgba(28,28,28,.65))}
}

.hero.slideshow {
  position: relative;
  height: 100vh; /* full screen */
  overflow: hidden;
  color: #fff;
}

.slides {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 100px; /* spacing from top */
}

.hero.slideshow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45); /* dark overlay for text readability */
  z-index: 1;
}


.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 1px solid var(--muted-gold);
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 600;
}
.eyebrow b {
    color: var(--orange)
}
h1 {
    font-size: clamp(28px, 4.2vw, 48px);
    line-height: 1.15;
    margin: 14px 0 10px;
    color: var(--orange);
    font-weight: 800;
}
.sub {
    font-size: 18px;
    opacity: .9;
    margin-bottom: 18px
}
.bullets {
    display: grid;
    gap: 8px;
    margin: 18px 0
}
.bullets li {
    list-style: none;
    gap: 10px;
    color: #F5F1EA;
}
.bullets li::before {
    /* content: "🧠"; */
    display: inline-block
}
.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 6px
}
.hero-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .06);
    padding: 14px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft)
}
.hero-card img {
    border-radius: 12px
}
section {
    padding: 72px 0;
    border-top: 1px solid rgba(0, 0, 0, .06)
}
section h2 {
    font-size: clamp(24px, 3.4vw, 36px);
    margin: 0 0 14px;
    color: var(--softblack);
    font-weight: 800
}
.lead {
    color: #333;
    opacity: .95
}
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 18px
}
.card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .06);
    padding: 22px;
    border-radius: 18px;
    box-shadow: var(--shadow-soft)
}
.card h3 {
    margin: 0 0 6px;
    font-size: 18px
}
.card ul {
    padding-left: 18px;
    margin: 10px 0
}
.steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 20px
}
.step {
    background: linear-gradient(180deg, #fff, #faf7f1);
    border: 1px solid rgba(0, 0, 0, .06);
    padding: 18px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft)
}
.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: var(--orange);
    color: #fff;
    font-weight: 800;
    margin-bottom: 8px
}
.step h4 {
    margin: .2rem 0 .4rem;
    font-size: 16px
}
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
figure {
    margin: 0;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: var(--shadow-soft)
}
figure img {
    aspect-ratio: 4/3;
    object-fit: cover
}
figcaption {
    padding: 10px 12px;
    font-weight: 600
}
.promo {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 18px;
    align-items: center;
    background: linear-gradient(135deg, #fff 0%, #fff 45%, rgba(244, 122, 46, .08) 100%);
    border: 1px solid rgba(0, 0, 0, .06);
    padding: 18px;
    border-radius: 20px
}
.promo .tag {
    display: inline-block;
    background: rgba(244, 122, 46, .12);
    color: var(--orange);
    font-weight: 800;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px dashed var(--orange)
}
.cta-section {
    background: var(--softblack);
    color: #fff;
    border-radius: 24px;
    padding: 28px
}
.cta-section h3 {
    margin: 0 0 6px;
    font-size: 28px
}
.cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px
}
.cta-section .cta {
    box-shadow: none
}
.cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 1.5px solid #fff;
    color: #fff;
    padding: 10px 16px;
    border-radius: 12px;
    font-weight: 700
}
footer {
    padding: 36px 0;
    color: #666
}
.muted {
    color: #666
}
@media (max-width:960px) {
    .hero-inner {
        grid-template-columns: 1fr
    }
    .cards {
        grid-template-columns: 1fr 1fr
    }
    .steps {
        grid-template-columns: 1fr 1fr
    }
    .grid {
        grid-template-columns: 1fr 1fr
    }
    .promo {
        grid-template-columns: 1fr
    }
}
@media (max-width:620px) {
    .menu {
        display: none
    }
    .cards, .steps, .grid {
        grid-template-columns: 1fr
    }
    .eyebrow {
        font-size: 13px
    }
}
.with-ico {
    display: flex;
    align-items: center;
    gap: 8px
}
.ico-bounce {
    transition: transform .2s ease
}
.card:hover .ico-bounce, .step:hover .ico-bounce, .steps-timeline li:hover .ico-bounce {
    transform: translateY(-2px) scale(1.08)
}
.card, .step {
    position: relative;
    overflow: hidden
}
.card::after, .step::after {
    content: "";
    position: absolute;
    inset: -40% auto -40% -60%;
    width: 40%;
    transform: rotate(25deg);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .22), transparent);
    opacity: 0;
    transition: transform .6s ease, opacity .6s ease
}
.card:hover::after, .step:hover::after {
    opacity: 1;
    transform: translateX(300%) rotate(25deg)
}
.banner-gallery {
    position: relative;
    display: flex;
    overflow: hidden;
    gap: 10px;
    padding: 10px 0;
    isolation: isolate;
    contain: paint
}
.banner-gallery-track {
    display: flex;
    align-items: center;
    gap: 10px;
    will-change: transform
}
.banner-gallery img {
    height: 300px;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
    user-select: none;
    -webkit-user-drag: none;
    transition: transform .25s ease
}
.banner-gallery:hover img {
    transform: scale(1.02)
}
@media (max-width:620px) {
    .banner-gallery img {
        height: 220px
    }
}
@media (prefers-reduced-motion:reduce) {
    .banner-gallery {
        overflow: auto
    }
}
.steps-timeline {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin: 20px 0 0;
    padding: 0;
    position: relative
}
.steps-timeline::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 22px;
    height: 2px;
    background: rgba(0, 0, 0, .08)
}
.steps-timeline li {
    background: linear-gradient(180deg, #fff, #faf7f1);
    border: 1px solid rgba(0, 0, 0, .06);
    padding: 18px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    position: relative
}
.steps-timeline .dot {
    position: absolute;
    top: -10px;
    left: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: var(--orange);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 6px 16px rgba(244, 122, 46, .35)
}
.steps-timeline h4 {
    margin: .6rem 0 .4rem;
    font-size: 16px
}
@media (max-width:960px) {
    .steps-timeline {
        grid-template-columns: 1fr
    }
    .steps-timeline::before {
        left: 22px;
        right: auto;
        top: auto;
        bottom: 0;
        width: 2px;
        height: 100%
    }
    .steps-timeline li {
        padding-left: 54px;
        margin-left: 12px
    }
    .steps-timeline .dot {
        left: -6px;
        top: 18px
    }
}
.gallery figure {
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease
}
.gallery figure:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08)
}
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .75);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999
}
.lightbox[aria-hidden="false"] {
    display: flex
}
.lb-img {
    max-width: 90vw;
    max-height: 84vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .4)
}
.lb-close, .lb-prev, .lb-next {
    position: absolute;
    top: 20px;
    background: rgba(255, 255, 255, .9);
    border: none;
    border-radius: 999px;
    width: 40px;
    height: 40px;
    font-size: 24px;
    line-height: 40px;
    text-align: center;
    cursor: pointer
}
.lb-close {
    right: 20px
}
.lb-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%)
}
.lb-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%)
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover {
    background: #fff
}
@media (max-width:620px) {
    .lb-prev, .lb-next {
        width: 36px;
        height: 36px;
        font-size: 22px
    }
}
.brand-accent {
    color: var(--orange)
}
.why-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 22px
}
@media (max-width:960px) {
    .why-cards {
        grid-template-columns: 1fr
    }
}
.feature-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 18px;
    padding: 22px;
    box-shadow: var(--shadow-soft)
}
.feature-card:hover {
    transform: translateY(-2px);
    transition: transform .2s ease
}
.fc-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px
}
.fc-left {
    display: flex;
    align-items: center;
    gap: 10px
}
.fc-ico {
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .08))
}
.fc-right {
    display: flex;
    align-items: flex-end
}
.stat {
    font-weight: 800;
    line-height: 1;
    letter-spacing: .5px;
    font-size: clamp(28px, 5vw, 44px);
    color: var(--orange)
}
.stat-sub {
    font-size: 14px;
    text-transform: uppercase;
    margin-right: 6px;
    color: #111
}
.stat-unit {
    font-size: .6em;
    margin-left: 4px
}
.feature-card h3 {
    margin: 8px 0 6px;
    font-size: 18px;
    color: #111
}
/* Vertical timeline - Orangie Studio theme */
.v-timeline {
    list-style: none;
    margin: 26px 0 0;
    padding: 0;
    position: relative;
}
.v-timeline::before {
    content: "";
    position: absolute;
    left: 22px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(244, 122, 46, 0.3);
    /* orange line with transparency */
}
.v-timeline>li {
    position: relative;
    padding: 18px 0 18px 70px;
}
.vt-node {
    position: absolute;
    left: 0;
    top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 6px 16px rgba(244, 122, 46, 0.25);
}
.vt-content h4 {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 700;
    color: var(--softblack);
}
.vt-content p {
    margin: 0;
    font-size: 15px;
    color: #555;
    line-height: 1.4;
}
.v-timeline>li:last-child::after {
    content: "";
    position: absolute;
    left: 22px;
    bottom: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    /* background: var(--softblack); */
}
/* Responsive */
@media (max-width: 700px) {
    .v-timeline::before {
        left: 18px;
    }
    .vt-node {
        width: 42px;
        height: 42px;
        font-size: 12px;
    }
    .v-timeline>li {
        padding-left: 60px;
    }
}
/* Tabs */
.tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px
}
.tab {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 700;
    cursor: pointer
}
.tab.is-active {
    background: rgba(244, 122, 46, .1);
    border-color: var(--orange);
    color: var(--orange)
}
.tab-panels {
    margin-top: 16px
}
.tab-panel[hidden] {
    display: none
}
/* Show only first image in each gallery */
.gallery.cover-only figure:not(:first-child) {
    display: none
}
.gallery.cover-only figure:first-child {
    position: relative;
    cursor: pointer
}
.gallery.cover-only figure:first-child::after {
    content: attr(data-count);
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: rgba(28, 28, 28, .8);
    color: #fff;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .25);
}

/* Row layout with horizontal scroll */
.grid.gallery {
    display: flex;
    flex-direction: row;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
}

.grid.gallery figure {
    flex: 0 0 auto;
    /* Keep original size */
    margin: 0;
    scroll-snap-align: start;
}

.grid.gallery img {
    display: block;
    width: 260px;
    /* Keep thumbnail size */
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}
.section-title {
    text-align: center;
    margin: 0 0 10px;
    font-weight: 800
}
.section-title .accent {
    color: var(--orange)
}

.theme-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 18px;
}
@media (max-width:1024px) {
    .theme-cards {
        grid-template-columns: 1fr 1fr
    }
}
@media (max-width:600px) {
    .theme-cards {
        grid-template-columns: 1fr
    }
}

.theme-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
    background: #000;
    transition: transform .25s ease, box-shadow .25s ease;
}
.theme-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 26px 80px rgba(0, 0, 0, .16)
}
.theme-card .bg {
    position: relative
}
.theme-card .bg img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}
@media (min-width:1200px) {
    .theme-card .bg img {
        height: 260px
    }
}
/* dark gradient overlay */
.theme-card .bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .15) 0%, rgba(0, 0, 0, .5) 70%, rgba(0, 0, 0, .65) 100%);
    pointer-events: none;
}

/* show only first figure inside bgs */
.theme-card .gallery.cover-only figure:not(:first-child) {
    display: none
}

/* title + button */
.theme-card .meta {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
}
.theme-card h3 {
    color: #fff;
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: .2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .35);
}

/* pill buttons */
.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(244, 122, 46, .9);
    color: #fff;
    font-weight: 800;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(244, 122, 46, .35);
}
.pill:hover {
    filter: brightness(1.05)
}
.pill.big {
    padding: 14px 26px;
    font-size: 16px
}
.more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 22px
}

/* remove default grid spacing inside the hidden galleries */
.theme-card .grid {
    gap: 0
}
.theme-card figure {
    margin: 0
}
/* --- Fix black box around theme cards --- */
.theme-card {
    background: transparent;
    /* no solid black background */
    border-radius: 20px;
    overflow: hidden;
}

/* kill figure defaults inside cards */
.theme-card figure {
    margin: 0;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
}

/* make the image fill the card edge-to-edge */
.theme-card .bg,
.theme-card .gallery,
.theme-card .gallery figure,
.theme-card .gallery img {
    display: block;
    width: 100%;
    height: 260px;
    /* or 240px if you prefer */
    border-radius: 0 !important;
    object-fit: cover;
}

/* soften/dim overlay (was too dark) */
.theme-card .bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, .10) 0%,
            rgba(0, 0, 0, .35) 65%,
            rgba(0, 0, 0, .55) 100%);
    pointer-events: none;
}

/* hide default figcaptions inside cards */
.theme-card figcaption {
    display: none
}

/* keep only the first image visible in each card */
.theme-card .gallery.cover-only figure:not(:first-child) {
    display: none
}
/* Prevent vertical scrollbar in cards */
.theme-card {
    overflow: hidden !important;
}

/* Ensure gallery and image fit perfectly */
.theme-card .gallery,
.theme-card img {
    display: block;
    height: 100%;
    max-height: 100%;
    object-fit: cover;
}
.theme-card {
    position: relative;
    border-radius: 20px;
    background: transparent;
    overflow: hidden !important;
}
.theme-card .bg {
    position: relative;
    height: 260px;
}
@media (min-width:1200px) {
    .theme-card .bg {
        height: 280px
    }
}
.theme-card .grid.gallery {
    display: block;
    height: 100%;
    overflow: visible;
    gap: 0;
}
.theme-card .gallery figure {
    margin: 0;
    height: 100%;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}
.theme-card .gallery img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 0;
}
.theme-card .bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .10) 0%, rgba(0, 0, 0, .35) 65%, rgba(0, 0, 0, .55) 100%);
    pointer-events: none;
}
.theme-card .meta {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    overflow: visible;
}
.theme-card .pill {
    white-space: nowrap;
}
.theme-card .gallery.cover-only figure:not(:first-child) {
    display: none;
}
.theme-card-row {
    overflow-x: auto;
    overflow-y: hidden;
}

/* Center the section title */
#what {
  text-align: center;
  padding: 60px 0;
  background: var(--offwhite);
}

#what h2 {
  font-weight: 800;
  margin-bottom: 40px;
  
}

/* Center the vertical timeline in the container */
.v-timeline {
  display: inline-block; /* shrink-wrap timeline content */
  text-align: left; /* keep step text aligned left inside */
  margin: 0 auto;
}

/* Optional: limit width for better balance */
#what .v-timeline {
  max-width: 600px;
}

/* Adjust step alignment */
.vt-content {
  text-align: left; /* content stays readable */
}

/* Our Promotion */
#promo2{padding:64px 0}
#promo2 .section-title{margin-bottom:18px}

.promo-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
  align-items:start;
}
@media (max-width:900px){.promo-grid{grid-template-columns:1fr}}

.promo-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:20px;
  overflow:hidden;
  box-shadow:var(--shadow-soft);
  transition:transform .2s ease, box-shadow .2s ease;
}
.promo-card:hover{transform:translateY(-2px);box-shadow:0 18px 50px rgba(0,0,0,.12)}

.promo-media{position:relative;aspect-ratio:16/11;overflow:hidden}
.promo-media img{width:100%;height:100%;object-fit:cover;display:block}

/* price badge */
.promo-badge{
  position:absolute;left:14px;bottom:14px;
  background:var(--orange);color:#fff;
  font-weight:900;letter-spacing:.3px;
  padding:8px 12px;border-radius:12px;
  box-shadow:0 10px 30px rgba(244,122,46,.35);
}

.promo-body{padding:16px}
.promo-body h3{margin:0 0 8px;font-size:18px;color:var(--softblack);font-weight:800}

.promo-list{
  margin:0 0 14px;padding-left:18px;color:#333
}
.promo-list li{margin:2px 0}

.promo-cta{
  align-self:flex-start;
  background:var(--orange);
  color:#fff;
  font-weight:800;
  box-shadow:0 10px 30px rgba(244,122,46,.35);
}
.promo-cta:hover{filter:brightness(1.05)}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOutDown {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(20px); }
}

#what .v-timeline li {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

#what .v-timeline li.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Themed Section 2 (Why Choose Us) === */
#why {
  background: linear-gradient(
    180deg,
    var(--offwhite) 0%,
    color-mix(in oklab, var(--orange) 12%, var(--offwhite)) 100%
  );
  padding: 72px 0;
  transition: background .4s ease, color .4s ease;
}

#why h2 {
  color: var(--orange);
}

#why .lead {
  color: var(--charcoal);
  opacity: .9;
}

#why .feature-card {
  background: #fff;
  border: 1.5px solid color-mix(in oklab, var(--orange) 25%, transparent);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease, border-color .3s ease;
}

#why .feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--orange);
  box-shadow: 0 14px 40px rgba(0,0,0,.1);
}

#why .feature-card h3 {
  color: var(--softblack);
}

#why .feature-card ul li::marker {
  color: var(--orange);
}

/* === Horizontal Steps Flow (Section 3) === */
#what { padding: 64px 0; }
#what h2 { margin-bottom: 8px; }
#what .lead { margin: 0 0 24px; }

.flow-steps{
  list-style:none;
  display:grid;
  grid-template-columns: repeat(5,1fr);
  gap: 18px;
  padding:0;
  margin: 0;
  position: relative;
}
@media (max-width: 1024px){
  .flow-steps{ grid-template-columns: repeat(3,1fr); row-gap: 28px; }
}
@media (max-width: 680px){
  .flow-steps{ grid-template-columns: 1fr; }
}

.flow-step{
  text-align:center;
  padding: 0 8px;
  position: relative;
}

.flow-step .step-tag{
  display:block;
  font-size: 12px;
  letter-spacing:.15em;
  text-transform:uppercase;
  color: color-mix(in oklab, var(--orange) 65%, black);
  margin: 12px 0 6px;
  font-weight: 800;
}

.flow-step h4{
  margin: 4px 0 6px;
  font-size: 16px;
  font-weight: 800;
  color: var(--softblack);
  letter-spacing: .2px;
}
.flow-step p{
  margin: 0;
  font-size: 14px;
  color: #555;
}

/* orange dots with icons */
.flow-step .dot{
  width: 92px;
  height: 92px;
  margin: 0 auto;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 36px rgba(244,122,46,.35);
  position: relative;
  isolation:isolate;
}
.flow-step .dot svg{
  width: 42px; height: 42px; display:block;
}

/* connector line behind the dots */
.flow-steps::before{
  content:"";
  position:absolute;
  left: 6%;
  right: 6%;
  top: 46px;
  height: 4px;
  border-radius: 4px;
  background: color-mix(in oklab, var(--orange) 30%, var(--offwhite));
  z-index: 0;
}
@media (max-width:680px){
  .flow-steps::before{ display:none; } /* stacked layout, no line */
}

/* subtle entrance animation */
@keyframes fs-up {
  from { opacity:0; transform: translateY(12px); }
  to   { opacity:1; transform: none; }
}
.flow-step{ opacity:0; transform: translateY(12px); }
.flow-step.is-visible{ opacity:1; transform:none; animation: fs-up .6s ease both; }

/* Remove bullets from flow-step lists */
.flow-step ul {
  list-style: none;
  padding-left: 0;
  margin: 6px 0 0;
}

.flow-step ul li {
  margin: 2px 0;
  color: #555;
  font-size: 14px;
}

/* Fix lightbox arrows on small screens */
@media (max-width:620px){
  .lightbox { align-items: center; } /* ensure the overlay centers content */
  .lb-prev, .lb-next{
    position: fixed;          /* detach from img sizing */
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 42px;              /* a touch bigger for thumbs */
    height: 42px;
    font-size: 24px;
    line-height: 42px;
    z-index: 1001;            /* above the image */
  }
  .lb-prev{ left: 10px; }
  .lb-next{ right: 10px; }
  .lb-close{ position: fixed; top: 14px; right: 14px; z-index: 1002; }
}

/* Image-only promo cards */
.promo-card.image-only { padding: 0; }
.promo-card.image-only .promo-media { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.promo-card.image-only .promo-media img { width:100%; height:100%; object-fit:cover; transition: transform .35s ease; }
.promo-card.image-only:hover .promo-media img { transform: scale(1.02); }

/* legibility gradient over image */
.promo-card.image-only .promo-media::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.35) 100%);
  pointer-events:none;
}

/* CTA button overlay */
.promo-cta.overlay{
  position:absolute; left:50%; bottom:14px; transform:translateX(-50%);
  white-space: nowrap;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  text-shadow: 0 2px 6px rgba(0,0,0,.25);
}

/* hide any leftover body elements if present (safety) */
.promo-card.image-only .promo-body,
.promo-card.image-only .promo-badge { display: none !important; }

@media (max-width: 620px){
  .promo-cta.overlay{ bottom:12px; padding:10px 14px; }
}

/* Fix: promo images fit the card box */
.promo-card.image-only .promo-media{
  aspect-ratio: 1 / 1;              /* match your square promos */
}

/* Optional: see the full image, no crop */
.promo-card.image-only .promo-media img{ object-fit: contain; background: var(--offwhite); }


.promo-card.image-only .promo-media img{
  width:100%;
  height:100%;
  display:block;
  object-fit: cover;                 /* fill the box */
  object-position: center;           /* center the crop */
}

/* Promo CTA: bottom-right corner */
.promo-card.image-only .promo-cta.overlay{
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: auto;
  transform: none;     /* stop centering */
  z-index: 2;          /* above gradient overlay */
  white-space: nowrap;
}

@media (max-width:620px){
  .promo-card.image-only .promo-cta.overlay{
    right: 10px;
    bottom: 10px;
    padding: 10px 14px;
  }
}

/* Floating WhatsApp button (bottom-right, sticky) */
.whatsapp-fab{
  position: fixed;
  right: clamp(14px, 2vw, 20px);
  bottom: calc(clamp(14px, 2vw, 20px) + env(safe-area-inset-bottom));
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #25D366;          /* WhatsApp green */
  color: #fff;
  box-shadow: var(--shadow-soft), 0 8px 24px rgba(0,0,0,.15);
  text-decoration: none;
  z-index: 998;                  /* below lightbox (999) */
  transition: transform .2s ease, filter .2s ease, opacity .2s ease;
}
.whatsapp-fab svg{ width: 28px; height: 28px; }
.whatsapp-fab:hover{ transform: translateY(-1px); filter: brightness(1.07); }
.whatsapp-fab:active{ transform: translateY(0); }

@media (max-width:620px){
  .whatsapp-fab{ width: 52px; height: 52px; }
}

/* Hide FAB when a lightbox is open (we add/remove .hide-fab on <body>) */
.hide-fab .whatsapp-fab{
  opacity: 0;
  pointer-events: none;
}

/* Remove default focus/outline/border on buttons */
button,
.cta,
.pill,
.promo-cta,
.cta-outline {
  outline: none !important;
  border: 0;              /* kill UA default border */
}

/* Some browsers add an inner focus ring (Firefox) */
button::-moz-focus-inner {
  border: 0;
}

/* If a focus ring still appears on click */
button:focus,
.cta:focus,
.pill:focus,
.promo-cta:focus,
.cta-outline:focus {
  outline: none !important;
}

/* === Preloader (logo + spinner) === */
/* Full-screen, iOS-safe preloader */
#preloader{
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;   /* avoids vh quirks */
  width: 100%;
  height: 100dvh;                          /* dynamic viewport on iOS */
  z-index: 2000;
  background: var(--offwhite, #F5F1EA);
  display: grid; place-items: center;
  transition: opacity .6s ease;            /* fade only; no visibility toggle */
}

/* Fallbacks for older browsers */
@supports not (height: 100dvh){
  #preloader{ height: 100svh; }
}
@supports not (height: 100svh){
  #preloader{ height: 100vh; }
}

/* While loading, prevent scroll jump on iOS */
body.is-loading{ overflow: hidden; }

/* Fade-out state */
#preloader.is-done{
  opacity: 0;
  pointer-events: none;
}

/* Make the preloader truly full-screen on iOS */
html, body { height: 100%; }

#preloader{
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;   /* avoid 100vh quirks */
  width: 100%;
  z-index: 2000;
  background: var(--offwhite, #F5F1EA);
  display: grid; place-items: center;
  transition: opacity .6s ease;
}

/* Modern stable viewport units */
@supports (height: 100dvh){
  #preloader{ height: 100dvh; }
}
/* Fallbacks */
@supports (height: 100svh){
  #preloader{ height: 100svh; }
}

/* iOS special case (older WebKit) */
@supports (-webkit-touch-callout: none){
  html, body { height: -webkit-fill-available; }
  #preloader{ min-height: -webkit-fill-available; }
}

#preloader.is-done{ opacity: 0; pointer-events: none; }
body.is-loading{ overflow: hidden; }  /* prevent scroll jump while showing */



