/* ======================================================
   LockVault — brand overrides on top of theme custom.css
   Palette: deep navy + electric blue + warm operator amber
   ====================================================== */

:root{
    --primary-color        : #0A2540; /* deep navy */
    --secondary-color      : #F1F6FC; /* icy off-white */
    --bg-color             : #FFFFFF;
    --text-color           : #4A5C7A; /* slate */
    --accent-color         : #1E88FF; /* electric blue */
    --white-color          : #FFFFFF;
    --divider-color        : #0A25401A;
    --dark-divider-color   : #FFFFFF1A;
    --error-color          : rgb(230, 87, 87);

    /* LockVault extras */
    --lv-deep             : #061A2F;
    --lv-blue             : #1E88FF;
    --lv-blue-soft        : #66B0FF;
    --lv-blue-glow        : #38A3FF;
    --lv-amber            : #FFB400; /* operator complement */
    --lv-amber-soft       : #FFD073;
    --lv-success          : #10B981;
    --lv-grad             : linear-gradient(135deg, #0A2540 0%, #103A66 50%, #1E88FF 100%);
    --lv-grad-amber       : linear-gradient(135deg, #1E88FF 0%, #FFB400 100%);
}

/* ====== Logos / preloader fallback ====== */
.preloader{ background-color: #0A2540 !important; }
.preloader .loading{ border-color: #1E88FF transparent transparent transparent !important; }

/* ====== Text wordmark (sits next to the SVG mark) ====== */
.navbar-brand,
.navbar-brand a,
.footer-logo,
.footer-logo a{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    line-height: 1;
}
.navbar-brand img{ flex: 0 0 auto; height: 38px; display: block; }
.footer-logo img{ flex: 0 0 auto; height: 42px; display: block; }

.lv-logo{
    display: inline-flex;
    align-items: center;
    font-family: 'Outfit', system-ui, sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-decoration: none;
    white-space: nowrap;
    /* Match SVG cap-height: SVG = 38px tall in header, ~70% cap height
       so 30px font keeps the capitals visually equal in height. */
    font-size: 30px;
    line-height: 38px;
}
.footer-logo .lv-logo{ font-size: 32px; line-height: 42px; }

.lv-logo .lv-logo-accent{
    color: #1E88FF;
    font-weight: 800;
    margin-left: 1px;
}
.lv-logo-dark{ color: #0A2540; }
.lv-logo-light{ color: #FFFFFF; }
.lv-logo-light .lv-logo-accent{ color: #66B0FF; }

header.main-header .header-sticky.active .lv-logo-dark{ color: #0A2540; }

@media (max-width: 575px){
    .navbar-brand img{ height: 32px; }
    .lv-logo{ font-size: 24px; line-height: 32px; }
}

/* ====== Header ====== */
.header-sticky.bg-section{ background: #FFFFFF !important; box-shadow: 0 1px 0 rgba(10,37,64,.06); }
.main-header .navbar-nav .nav-link{ color: #0A2540 !important; }
.main-header .navbar-nav .nav-link:hover,
.main-header .navbar-nav .nav-item.current-menu-item > .nav-link{ color: #1E88FF !important; }

/* ====== Dropdown / submenu polish ====== */
.main-menu ul li.submenu > a:after{ color: #0A2540; }
.main-menu ul li.submenu:hover > a:after{ color: #1E88FF; }

.main-menu ul ul{
    background: #FFFFFF !important;
    border: 1px solid rgba(10,37,64,.08);
    box-shadow: 0 18px 40px -18px rgba(10,37,64,.25), 0 6px 12px -6px rgba(10,37,64,.12);
    border-radius: 14px !important;
    width: 260px !important;
    padding: 8px 0 !important;
    overflow: hidden;
    margin-top: 8px;
}
.main-menu ul ul ul{ margin-top: 0; margin-left: 6px; }

.main-menu ul ul li{ margin: 0; }
.main-menu ul ul li a{
    color: #0A2540 !important;
    background: transparent !important;
    padding: 10px 18px !important;
    font-weight: 500;
    border-left: 2px solid transparent;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease, padding-left .2s ease;
}
.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus,
.main-menu ul ul li.current-menu-item > a{
    color: #1E88FF !important;
    background: rgba(30,136,255,.08) !important;
    border-left-color: #1E88FF;
    padding: 10px 18px 10px 20px !important;
}
.main-menu ul ul li.current-menu-item > a{ font-weight: 600; }

/* Slick (mobile) menu colours */
.slicknav_menu{ background: #FFFFFF; }
.slicknav_nav, .slicknav_nav ul{ background: #FFFFFF; }
.slicknav_nav a{ color: #0A2540 !important; }
.slicknav_nav a:hover,
.slicknav_nav .current-menu-item > a{ background: rgba(30,136,255,.08) !important; color: #1E88FF !important; }

.btn-default{
    background: var(--primary-color);
    color: #FFFFFF;
    border: 1px solid var(--primary-color);
}
.btn-default:hover{ background: var(--accent-color); border-color: var(--accent-color); color: #FFFFFF; }
.btn-default.btn-highlighted{ background: var(--accent-color); border-color: var(--accent-color); color: #FFFFFF; }
.btn-default.btn-highlighted:hover{ background: var(--lv-amber); border-color: var(--lv-amber); color: #0A2540; }

a, a:hover{ color: var(--accent-color); }

/* ====== Section accents (eyebrow h3) ====== */
.section-title h3{ color: var(--accent-color) !important; }
.section-title h3:before,
.section-title h3:after{ background: var(--accent-color) !important; }

/* ====== Header: flush, full-bleed, no floating-card framing ====== */
header.main-header{ top: 0 !important; border-bottom: 1px solid rgba(10,37,64,.08); }
header.main-header .header-sticky.bg-section{
    max-width: none;
    width: 100%;
    margin: 0;
    border-radius: 0 !important;
    background-color: #FFFFFF !important;
}
header.main-header .header-sticky.active{
    border-radius: 0 !important;
    border-left: none;
    border-right: none;
    background: #FFFFFF !important;
    box-shadow: 0 6px 24px -16px rgba(10,37,64,.35);
}
.navbar{ padding: 16px 0; }

/* ====== Footer: flush to viewport bottom (no 20px white gap) ====== */
.main-footer{ margin-bottom: 0 !important; }
footer.main-footer.bg-section,
.main-footer.bg-section{
    max-width: none;
    width: 100%;
    margin: 0 !important;
    border-radius: 0 !important;
}

/* ====== Hero (parallaxie) ======
   Reset the theme's framed/rounded hero: full-bleed, even padding,
   no border-radius, no max-width inset, sensible top clearance for the
   absolutely-positioned header. */
.hero.lv-hero{
    background: url('../images/lock_vault_festival2.png') center/cover no-repeat;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 200px 0 130px;
    border-radius: 0;
    position: relative;
}
/* Override the theme's heavy 80% --primary overlay with a tuned brand gradient */
.hero.lv-hero::before{
    background: linear-gradient(135deg, rgba(6,26,47,.78) 0%, rgba(10,37,64,.55) 55%, rgba(30,136,255,.30) 100%) !important;
    opacity: 1 !important;
}
.hero.lv-hero > .container{ position: relative; z-index: 2; }
.hero.lv-hero .container{ padding-left: 15px; padding-right: 15px; }
.hero.lv-hero .hero-content{ max-width: 1080px; margin: 0 auto; text-align: center; }
.hero.lv-hero .hero-content .section-title h1{ margin-bottom: 22px; }
.hero.lv-hero .hero-content .section-title p{ max-width: 820px; margin: 0 auto 36px; }

@media (max-width: 991px){
    .hero.lv-hero{ padding: 160px 0 90px; }
}
@media (max-width: 575px){
    .hero.lv-hero{ padding: 130px 0 70px; }
}

.hero.dark-section.lv-hero .section-title h1,
.hero.dark-section.lv-hero .section-title p,
.hero.dark-section.lv-hero h3{ color: #FFFFFF !important; }
.hero.dark-section.lv-hero h3{ color: #66B0FF !important; }
.hero.dark-section.lv-hero h3:before,
.hero.dark-section.lv-hero h3:after{ background: #66B0FF !important; }

/* generic dark sections */
.dark-section{ background-color: var(--lv-deep) !important; }
.dark-section .section-title h2,
.dark-section .section-title p,
.dark-section h2,
.dark-section h3,
.dark-section h4,
.dark-section p{ color: #FFFFFF !important; }
.dark-section .section-title h3{ color: #66B0FF !important; }

/* ====== bg-section soft tint ====== */
.bg-section{ background-color: #F1F6FC !important; }
/* When a section is BOTH bg-section AND dark-section, dark wins (so white text stays readable) */
.bg-section.dark-section,
.dark-section.bg-section{ background-color: var(--lv-deep) !important; }

/* ====== Scrolling ticker ====== */
.our-scrolling-ticker.bg-section{ background: var(--primary-color) !important; }
.scrolling-content span{ color: #FFFFFF !important; }
.scrolling-content span img{ filter: brightness(0) invert(1); opacity: .85; }

/* ====== Page header ====== */
.page-header{
    background:
      linear-gradient(135deg, rgba(6,26,47,.88) 0%, rgba(10,37,64,.65) 60%, rgba(30,136,255,.35) 100%),
      url('../images/lock_vault_festival2.png') center/cover no-repeat !important;
}
/* When the page header is immediately followed by a USP strip, drop the
   theme's rounded corners + 20px gap so the two flow as one continuous band. */
.page-header:has(+ .lv-usp-strip){
    border-radius: 0 !important;
    margin-bottom: 0 !important;
}
.page-header + .lv-usp-strip{
    margin-top: 0 !important;
    border-radius: 0;
}
.page-header .page-header-box h1,
.page-header .breadcrumb-item,
.page-header .breadcrumb-item.active,
.page-header .breadcrumb-item a{ color: #FFFFFF !important; }
.page-header .breadcrumb-item + .breadcrumb-item::before{ color: #66B0FF !important; }

/* ====== Service / feature card accents ====== */
.service-item .service-item-no h3{ color: var(--accent-color) !important; }
.feature-item .feature-item-content h3{ color: var(--primary-color) !important; }
.feature-item-btn .readmore-btn,
.post-item-btn .readmore-btn{ color: var(--accent-color) !important; }
.feature-item-btn .readmore-btn:hover,
.post-item-btn .readmore-btn:hover{ color: var(--lv-amber) !important; }


.about-us-body-item .icon-box,
.feature-item .icon-box,
.about-us-body-item .icon-box img,
.our-features .icon-box{
    background: linear-gradient(135deg, #E8F2FF 0%, #FFFFFF 100%);
}

/* ====== Pricing ====== */
.pricing-box.highlighted-box{ background: var(--primary-color) !important; }
.pricing-box.highlighted-box h2,
.pricing-box.highlighted-box h3,
.pricing-box.highlighted-box p,
.pricing-box.highlighted-box li,
.pricing-box.highlighted-box sub{ color: #FFFFFF !important; }

/* ====== CTA & Footer ====== */
.cta-box{ background: var(--lv-grad) !important; }
.cta-box .section-title h3,
.cta-box .section-title h2,
.cta-box .section-title p,
.cta-box h3,
.cta-box p{ color: #FFFFFF !important; }
.cta-box .btn-default{ background: var(--lv-amber); border-color: var(--lv-amber); color: #0A2540; }
.cta-box .btn-default:hover{ background: #FFFFFF; border-color: #FFFFFF; color: var(--primary-color); }

.main-footer{ background: #061A2F !important; }
.main-footer h2,
.main-footer h3,
.main-footer p,
.main-footer a,
.main-footer li,
.main-footer .footer-copyright p{ color: #E1ECF8 !important; }
.main-footer a:hover{ color: var(--lv-amber) !important; }
.main-footer .footer-social-links a{ background: rgba(255,255,255,.06); color: #FFFFFF !important; }
.main-footer .footer-social-links a:hover{ background: var(--lv-amber); color: #0A2540 !important; }

/* ====== Custom LockVault sections ====== */

/* USP highlight strip — "no capex, just revenue share" */
.lv-usp-strip{
    background: var(--lv-grad);
    color: #FFFFFF;
    padding: 28px 0;
    position: relative;
    overflow: hidden;
}
.lv-usp-strip:after{
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(600px 200px at 90% 0%, rgba(255,180,0,.18), transparent 60%),
      radial-gradient(500px 200px at 10% 100%, rgba(102,176,255,.25), transparent 60%);
    pointer-events: none;
}
.lv-usp-strip .lv-usp-row{ display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-around; align-items: center; position: relative; z-index: 1; }
.lv-usp-strip .lv-usp-row .lv-usp-item{ display: flex; align-items: center; gap: 14px; min-width: 220px; }
.lv-usp-strip .lv-usp-row .lv-usp-item .lv-usp-icon{
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(255,255,255,.12);
    display: flex; align-items: center; justify-content: center;
    color: #FFB400; font-size: 18px; flex-shrink: 0;
}
.lv-usp-strip .lv-usp-row .lv-usp-item h4{ color: #FFFFFF; font-size: 18px; line-height: 1.2; margin: 0 0 4px; font-weight: 700; }
.lv-usp-strip .lv-usp-row .lv-usp-item p{ color: rgba(255,255,255,.75); font-size: 13px; margin: 0; line-height: 1.4; }

/* Industry grid */
.lv-industry-grid{ display: grid; gap: 24px; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.lv-industry-card{
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: #0A2540;
    display: block;
    color: #FFFFFF;
    box-shadow: 0 10px 30px -15px rgba(10,37,64,.5);
    transition: transform .35s ease, box-shadow .35s ease;
}
.lv-industry-card:hover{ transform: translateY(-6px); box-shadow: 0 20px 40px -15px rgba(10,37,64,.55); }
.lv-industry-card .lv-industry-img{
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transition: transform .8s ease;
}
.lv-industry-card:hover .lv-industry-img{ transform: scale(1.06); }
.lv-industry-card:after{
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(6,26,47,0) 35%, rgba(6,26,47,.92) 100%);
}
.lv-industry-card .lv-industry-body{
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 22px 22px 24px;
    z-index: 2;
}
.lv-industry-card .lv-industry-body span{
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    background: rgba(30,136,255,.85);
    color: #FFFFFF;
    margin-bottom: 10px;
}
.lv-industry-card .lv-industry-body h3{
    color: #FFFFFF;
    font-size: 22px;
    line-height: 1.15;
    margin: 0 0 8px;
}
.lv-industry-card .lv-industry-body p{
    color: rgba(255,255,255,.78);
    font-size: 13px;
    margin: 0 0 10px;
    line-height: 1.4;
}
.lv-industry-card .lv-industry-body .lv-industry-cta{
    color: #FFB400; font-size: 13px; font-weight: 600;
    display: inline-flex; align-items: center; gap: 6px;
}

/* Wide hero photo block (festival container) */
.lv-hero-photo{
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 16/10;
    background-size: cover;
    background-position: center;
    box-shadow: 0 30px 60px -25px rgba(10,37,64,.5);
    position: relative;
}
.lv-hero-photo:before{
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,37,64,0) 60%, rgba(10,37,64,.6) 100%);
}

/* Stat tiles */
.lv-stat-grid{ display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
.lv-stat{
    background: #FFFFFF;
    border: 1px solid rgba(10,37,64,.08);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 4px 18px -10px rgba(10,37,64,.18);
}
.lv-stat h2{ font-size: 40px; font-weight: 800; color: var(--accent-color); margin-bottom: 4px; line-height: 1; letter-spacing: -.02em; }
.lv-stat h2 span{ color: var(--accent-color); }
.lv-stat p{ font-size: 13px; color: var(--text-color); margin: 0; }

.dark-section .lv-stat{ background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.08); box-shadow: none; }
.dark-section .lv-stat h2,
.dark-section .lv-stat h2 span{ color: var(--lv-amber) !important; }
.dark-section .lv-stat p{ color: rgba(255,255,255,.65); }

/* Simple feature card with image */
.lv-feature-card{
    background: #FFFFFF;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(10,37,64,.08);
    height: 100%;
    transition: transform .3s ease, box-shadow .3s ease;
    display: flex; flex-direction: column;
}
.lv-feature-card:hover{ transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(10,37,64,.25); }
.lv-feature-card .lv-feature-img{
    aspect-ratio: 16/10;
    background-size: cover; background-position: center;
}
.lv-feature-card .lv-feature-body{ padding: 24px; flex: 1; display: flex; flex-direction: column; }
.lv-feature-card .lv-feature-body h3{ color: var(--primary-color); font-size: 22px; margin-bottom: 10px; line-height: 1.2; }
.lv-feature-card .lv-feature-body p{ color: var(--text-color); font-size: 14px; line-height: 1.55; flex: 1; margin-bottom: 12px; }
.lv-feature-card .lv-feature-body ul{ list-style: none; padding: 0; margin: 0 0 8px; }
.lv-feature-card .lv-feature-body ul li{
    position: relative; padding-left: 22px; margin-bottom: 8px; font-size: 13px; color: var(--text-color); line-height: 1.4;
}
.lv-feature-card .lv-feature-body ul li:before{
    content: "✓"; position: absolute; left: 0; top: 0; color: var(--accent-color); font-weight: 700;
}

/* Highlight pill */
.lv-pill{
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(30,136,255,.1);
    color: var(--accent-color);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .03em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.dark-section .lv-pill{ background: rgba(102,176,255,.18); color: #66B0FF; }

/* Process steps */
.lv-step{
    display: flex; gap: 18px; align-items: flex-start; margin-bottom: 28px;
}
.lv-step .lv-step-num{
    width: 52px; height: 52px; border-radius: 14px;
    background: var(--lv-grad);
    color: #FFFFFF; font-weight: 800; font-size: 22px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px -8px rgba(30,136,255,.55);
}
.lv-step .lv-step-body h3{ color: var(--primary-color); font-size: 20px; margin: 6px 0 6px; line-height: 1.2; }
.lv-step .lv-step-body p{ color: var(--text-color); font-size: 14px; line-height: 1.55; margin: 0; }
.dark-section .lv-step .lv-step-body h3{ color: #FFFFFF; }
.dark-section .lv-step .lv-step-body p{ color: rgba(255,255,255,.72); }

/* Mid-page banner image with overlay */
.lv-banner{
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background-size: cover; background-position: center;
    padding: 64px 48px;
    color: #FFFFFF;
}
.lv-banner:before{
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(6,26,47,.88) 0%, rgba(10,37,64,.7) 60%, rgba(30,136,255,.5) 100%);
}
.lv-banner > *{ position: relative; z-index: 1; }
.lv-banner h2{ color: #FFFFFF; font-size: 36px; line-height: 1.15; margin-bottom: 14px; max-width: 720px; }
.lv-banner p{ color: rgba(255,255,255,.85); max-width: 620px; margin-bottom: 22px; }

/* Logo strip */
.lv-logo-strip{ background: #FFFFFF; padding: 36px 0; border-top: 1px solid rgba(10,37,64,.08); border-bottom: 1px solid rgba(10,37,64,.08); }
.lv-logo-strip p{ text-align: center; font-size: 12px; letter-spacing: .12em; color: var(--text-color); text-transform: uppercase; margin-bottom: 18px; }
.lv-logo-strip .lv-logo-row{ display: flex; flex-wrap: wrap; gap: 32px; justify-content: center; align-items: center; opacity: .65; }
.lv-logo-strip .lv-logo-row span{ font-weight: 700; font-size: 18px; letter-spacing: .04em; color: var(--primary-color); }

/* Section eyebrow alt */
.lv-eyebrow-amber{ color: var(--lv-amber) !important; }
.lv-eyebrow-amber:before, .lv-eyebrow-amber:after{ background: var(--lv-amber) !important; }

/* Make ride/feature item images nicer */
.feature-item .feature-image figure img,
.lv-feature-card .lv-feature-img{ height: 100%; width: 100%; object-fit: cover; }

/* ====== Tile cards (what guests store) ====== */
.lv-tile{
    position: relative; border-radius: 16px; overflow: hidden;
    aspect-ratio: 4/5; background: #0A2540; color: #FFFFFF;
    box-shadow: 0 12px 30px -18px rgba(10,37,64,.45);
    transition: transform .35s ease, box-shadow .35s ease;
    margin-bottom: 24px;
}
.lv-tile-hover:hover{ transform: translateY(-6px); box-shadow: 0 22px 44px -20px rgba(10,37,64,.55); }
.lv-tile .lv-tile-img{
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transition: transform .8s ease;
}
.lv-tile-hover:hover .lv-tile-img{ transform: scale(1.07); }
.lv-tile:after{
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(6,26,47,0) 35%, rgba(6,26,47,.92) 100%);
}
.lv-tile .lv-tile-body{
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 20px 22px 22px; z-index: 2;
}
.lv-tile .lv-tile-body h4{ color: #FFFFFF; font-size: 20px; line-height: 1.15; margin: 0 0 6px; font-weight: 700; }
.lv-tile .lv-tile-body p{ color: rgba(255,255,255,.78); font-size: 13px; margin: 0; line-height: 1.45; }

/* ====== Benefit (split image + text) ====== */
.lv-benefit{
    display: flex; gap: 0; background: #FFFFFF;
    border-radius: 18px; overflow: hidden;
    border: 1px solid rgba(10,37,64,.08);
    margin-bottom: 24px;
    transition: transform .3s ease, box-shadow .3s ease;
}
.lv-benefit:hover{ transform: translateY(-4px); box-shadow: 0 22px 40px -22px rgba(10,37,64,.25); }
.lv-benefit .lv-benefit-img{
    flex: 0 0 38%;
    min-height: 220px;
    background-size: cover; background-position: center;
}
.lv-benefit .lv-benefit-body{ flex: 1; padding: 28px 28px 26px; display:flex; flex-direction:column; justify-content:center; background:#FFFFFF; }
.lv-benefit .lv-benefit-body h3{ color: var(--primary-color); font-size: 21px; line-height: 1.2; margin: 6px 0 8px; }
.lv-benefit .lv-benefit-body p{ color: var(--text-color); font-size: 14px; line-height: 1.55; margin: 0; }
/* Card sits on a white panel — force readable colours even when wrapped in .dark-section */
.dark-section .lv-benefit .lv-benefit-body h3{ color: var(--primary-color) !important; }
.dark-section .lv-benefit .lv-benefit-body p{ color: var(--text-color) !important; }
.dark-section .lv-benefit .lv-benefit-body .lv-pill{ background: rgba(30,136,255,.12); color: var(--accent-color); }

/* Stacked variant for about/contact */
.lv-benefit-stack{ flex-direction: column; height: 100%; }
.lv-benefit-stack .lv-benefit-img{ flex: 0 0 200px; min-height: 200px; }
.lv-benefit-stack .lv-benefit-body{ padding: 24px; }

@media (max-width: 768px){
    .lv-benefit{ flex-direction: column; }
    .lv-benefit .lv-benefit-img{ flex: 0 0 200px; width: 100%; }
}

/* ====== Industry intro image ====== */
.lv-intro-image{
    aspect-ratio: 4/5;
    border-radius: 24px;
    background-size: cover; background-position: center;
    box-shadow: 0 30px 60px -25px rgba(10,37,64,.4);
}
@media (max-width: 1199px){ .lv-intro-image{ aspect-ratio: 16/10; margin-bottom: 30px; } }

/* ====== Earnings calculator ====== */
.lv-calc{
    background: #FFFFFF;
    border-radius: 24px;
    padding: 38px;
    box-shadow: 0 30px 60px -30px rgba(10,37,64,.35);
    border: 1px solid rgba(10,37,64,.06);
}
.lv-calc-grid{ display: grid; grid-template-columns: 1.05fr 1fr; gap: 36px; }
@media (max-width: 991px){ .lv-calc-grid{ grid-template-columns: 1fr; } }

.lv-calc-controls .lv-calc-row{ margin-bottom: 22px; }
.lv-calc-controls label{
    display: flex; justify-content: space-between; align-items: baseline;
    font-weight: 600; color: var(--primary-color); font-size: 14px;
    margin-bottom: 8px;
    width: 100%;
}
.lv-calc-controls .lv-calc-out{
    color: var(--accent-color); font-variant-numeric: tabular-nums;
    background: rgba(30,136,255,.08); padding: 4px 12px; border-radius: 999px; font-size: 13px;
}
.lv-calc-controls input[type="range"]{
    -webkit-appearance: none; appearance: none;
    width: 100%; height: 8px; background: linear-gradient(90deg, #1E88FF 0%, #66B0FF 100%);
    border-radius: 999px; outline: none;
}
.lv-calc-controls input[type="range"]::-webkit-slider-thumb{
    -webkit-appearance: none; appearance: none;
    width: 24px; height: 24px; border-radius: 50%;
    background: #FFFFFF; border: 3px solid #1E88FF;
    box-shadow: 0 4px 12px rgba(30,136,255,.4);
    cursor: pointer; transition: transform .2s ease;
}
.lv-calc-controls input[type="range"]::-webkit-slider-thumb:hover{ transform: scale(1.15); }
.lv-calc-controls input[type="range"]::-moz-range-thumb{
    width: 22px; height: 22px; border-radius: 50%;
    background: #FFFFFF; border: 3px solid #1E88FF;
    cursor: pointer;
}
.lv-calc-tip{
    font-size: 13px; color: var(--text-color);
    background: rgba(255,180,0,.1); padding: 12px 16px; border-radius: 12px;
    border-left: 3px solid var(--lv-amber); margin-top: 26px;
}
.lv-calc-tip i{ color: var(--lv-amber); margin-right: 6px; }

.lv-calc-output{
    background: var(--lv-grad);
    border-radius: 18px; padding: 30px; color: #FFFFFF;
    position: relative; overflow: hidden;
    display: flex; flex-direction: column;
}
.lv-calc-output:before{
    content:""; position: absolute; inset: 0;
    background: radial-gradient(500px 200px at 100% 0%, rgba(255,180,0,.18), transparent 60%);
    pointer-events: none;
}
.lv-calc-pill{
    display: inline-block; align-self: flex-start;
    padding: 5px 12px; border-radius: 999px;
    background: rgba(255,180,0,.18); color: var(--lv-amber);
    font-size: 12px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
    margin-bottom: 12px; position: relative;
}
.lv-calc-headline{
    font-size: 56px; font-weight: 800; line-height: 1; margin: 0 0 6px;
    color: #FFFFFF; letter-spacing: -.02em; position: relative;
    font-variant-numeric: tabular-nums;
}
.lv-calc-headline small{ font-size: 18px; font-weight: 600; color: rgba(255,255,255,.65); margin-left: 6px; }
.lv-calc-sub{ color: rgba(255,255,255,.75); margin-bottom: 22px; position: relative; }
.lv-calc-bars{ position: relative; }
.lv-calc-bar{
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 14px; border-radius: 10px;
    background: rgba(255,255,255,.06);
    margin-bottom: 8px;
    font-size: 14px;
}
.lv-calc-bar span{ color: rgba(255,255,255,.7); }
.lv-calc-bar strong{ color: #FFFFFF; font-variant-numeric: tabular-nums; }
.lv-calc-bar-amber{ background: rgba(255,180,0,.18); }
.lv-calc-bar-amber strong{ color: var(--lv-amber); }
.lv-calc-foot{ font-size: 11px; color: rgba(255,255,255,.55); margin-top: 14px; position: relative; }

/* ====== Festival container hotspot tour ====== */
.lv-tour{
    position: relative;
    border-radius: 24px; overflow: hidden;
    aspect-ratio: 16/9;
    background: #0A2540;
    background-size: cover; background-position: center;
    box-shadow: 0 30px 60px -25px rgba(10,37,64,.5);
}
.lv-tour:before{
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,37,64,0) 40%, rgba(10,37,64,.7) 100%);
}
.lv-tour-hotspot{
    position: absolute;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--lv-amber); color: #0A2540;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 800;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
    border: 3px solid #FFFFFF;
    z-index: 3;
    text-decoration: none;
}
.lv-tour-hotspot:before{
    content: ""; position: absolute; inset: -10px;
    border-radius: 50%; border: 2px solid var(--lv-amber);
    animation: lv-pulse 2s ease-out infinite;
    pointer-events: none;
}
.lv-tour-hotspot:hover, .lv-tour-hotspot.active{
    transform: scale(1.18);
    box-shadow: 0 0 0 8px rgba(255,180,0,.25);
}
@keyframes lv-pulse{
    0%{ transform: scale(.9); opacity: .9; }
    100%{ transform: scale(1.6); opacity: 0; }
}
.lv-tour-info{
    position: absolute; left: 30px; bottom: 30px; right: 30px;
    max-width: 460px;
    background: rgba(6,26,47,.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 22px 24px;
    color: #FFFFFF; z-index: 4;
    transition: transform .3s ease;
}
.lv-tour-info.lv-tour-flash{ transform: translateY(-3px); }
.lv-tour-info .lv-pill{ background: rgba(255,180,0,.2); color: var(--lv-amber); }
.lv-tour-info h3{ color: #FFFFFF; font-size: 22px; line-height: 1.15; margin: 0 0 8px; }
.lv-tour-info p{ color: rgba(255,255,255,.78); font-size: 14px; margin: 0; line-height: 1.5; }

@media (max-width: 768px){
    .lv-tour{ aspect-ratio: 4/5; }
    .lv-tour-info{ left: 16px; right: 16px; bottom: 16px; padding: 16px 18px; }
    .lv-tour-info h3{ font-size: 18px; }
    .lv-tour-hotspot{ width: 32px; height: 32px; font-size: 12px; }
}

/* ====== FAQ accordion (native <details>) ====== */
.lv-faq{ transition: box-shadow .2s ease, border-color .2s ease; }
.lv-faq:hover{ border-color: rgba(30,136,255,.35) !important; box-shadow: 0 12px 32px -22px rgba(10,37,64,.35); }
.lv-faq summary::-webkit-details-marker{ display: none; }
.lv-faq summary > i{ transition: transform .2s ease; flex: 0 0 auto; }
.lv-faq[open] summary > i{ transform: rotate(45deg); }
.lv-faq[open]{ border-color: rgba(30,136,255,.35) !important; }

/* ====== Sticky CTA bar ====== */
.lv-sticky-cta{
    position: fixed; right: 22px; bottom: 22px; z-index: 999;
    background: var(--lv-grad);
    color: #FFFFFF; border-radius: 999px;
    padding: 14px 22px;
    font-weight: 600;
    box-shadow: 0 14px 30px -10px rgba(30,136,255,.5);
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px;
    opacity: 0; transform: translateY(12px);
    pointer-events: none;
    transition: opacity .3s ease, transform .3s ease;
}
.lv-sticky-cta-visible{ opacity: 1; transform: translateY(0); pointer-events: auto; }
.lv-sticky-cta:hover{ color: #FFFFFF; background: linear-gradient(135deg, #1E88FF 0%, #FFB400 100%); }
.lv-sticky-cta i{ font-size: 16px; }

/* ====== Reveal-on-scroll ====== */
.lv-reveal{ opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.lv-reveal-in{ opacity: 1; transform: translateY(0); }

/* ====== Toggle (Old way vs LockVault) ====== */
.lv-tabs{
    display: inline-flex;
    background: #F1F6FC; border-radius: 999px; padding: 5px;
    margin-bottom: 22px;
}
.lv-tabs [data-lv-tab]{
    padding: 10px 22px; border-radius: 999px;
    font-weight: 600; font-size: 14px; color: var(--text-color);
    cursor: pointer; border: 0; background: transparent;
    transition: background .25s ease, color .25s ease;
}
.lv-tabs [data-lv-tab].active{
    background: var(--primary-color); color: #FFFFFF;
}
.lv-pane{ display: none; }
.lv-pane.active{ display: block; }

/* ====== Contact form ====== */
.lv-form label{
    display: block; font-weight: 600; color: var(--primary-color); font-size: 13px;
    margin: 12px 0 6px;
}
.lv-form input, .lv-form select, .lv-form textarea{
    width: 100%; padding: 12px 14px; border: 1px solid rgba(10,37,64,.18); border-radius: 10px;
    font-size: 14px; color: var(--primary-color); background: #FFFFFF;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.lv-form input:focus, .lv-form select:focus, .lv-form textarea:focus{
    outline: 0; border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(30,136,255,.12);
}
.lv-form-submit{ margin-top: 22px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.lv-form-submit button{ border: 0; cursor: pointer; }
.lv-contact-aside{
    background: var(--lv-deep); color: #FFFFFF;
    border-radius: 20px; padding: 36px 30px;
    box-shadow: 0 30px 60px -30px rgba(10,37,64,.4);
}
.lv-contact-aside h3{ color: #FFFFFF; font-size: 22px; margin-bottom: 18px; }
.lv-contact-aside ul{ list-style: none; padding: 0; margin: 0; }
.lv-contact-aside ul li{
    color: rgba(255,255,255,.85); padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: 14px; display: flex; align-items: center; gap: 10px;
}
.lv-contact-aside ul li:last-child{ border-bottom: 0; }
.lv-contact-aside ul li i{ color: var(--lv-amber); }
.lv-contact-aside p{ color: rgba(255,255,255,.78) !important; font-size: 14px; }
.lv-contact-aside a{ color: var(--lv-amber) !important; }

/* ====== Industries hub: filter buttons (extra polish) ====== */
.lv-filters{
    display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 30px;
}
.lv-filters button{
    border: 1px solid rgba(10,37,64,.12); background: #FFFFFF;
    border-radius: 999px; padding: 8px 16px; font-size: 13px; font-weight: 600;
    color: var(--text-color); cursor: pointer; transition: all .2s ease;
}
.lv-filters button:hover{ border-color: var(--accent-color); color: var(--accent-color); }
.lv-filters button.active{ background: var(--primary-color); color: #FFFFFF; border-color: var(--primary-color); }

/* Responsive */
@media (max-width: 768px){
    .lv-banner{ padding: 40px 24px; }
    .lv-banner h2{ font-size: 26px; }
    .lv-step{ gap: 14px; }
    .lv-stat h2{ font-size: 32px; }
    .lv-calc{ padding: 24px; }
    .lv-calc-headline{ font-size: 42px; }
    .lv-sticky-cta{ right: 12px; bottom: 12px; padding: 12px 16px; font-size: 13px; }
}

/* ====== Skip-to-content link (a11y / SEO) ====== */
.lv-skip-link{
    position: absolute;
    top: -100px;
    left: 8px;
    z-index: 9999;
    padding: 10px 18px;
    border-radius: 8px;
    background: var(--accent-color, #1E88FF);
    color: #FFFFFF !important;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 24px -8px rgba(10,37,64,.45);
    transition: top .18s ease;
}
.lv-skip-link:focus,
.lv-skip-link:focus-visible{
    top: 12px;
    outline: 2px solid #FFFFFF;
    outline-offset: 2px;
}
