/**
 * LANDING PAGE — MODERN ENHANCEMENT LAYER
 *
 * Layered on top of style.css + maritime.css to bring the landing page
 * in line with the application's brand language: deep ocean blues, confident
 * orange accents, generous spacing, layered atmospheric backgrounds and
 * orchestrated motion. Designed to coexist with the existing HTML structure
 * and JS libraries (WOW, Owl, Slick, Swiper).
 */

:root {
    --lp-cyan-mist: #99e4f5;
    --lp-mist: #f4f7fc;
    --lp-ink: #0b1e3a;
    --lp-ink-soft: #334a6b;
    --lp-line: rgba(15, 40, 71, 0.08);

    --lp-font-display: "Sora", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    --lp-font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    --lp-radius-sm: 10px;
    --lp-radius: 16px;
    --lp-radius-lg: 24px;
    --lp-radius-pill: 999px;

    --lp-shadow-sm: 0 4px 14px rgba(10, 36, 114, 0.06);
    --lp-shadow: 0 18px 40px -16px rgba(10, 36, 114, 0.18);
    --lp-shadow-lg: 0 30px 70px -20px rgba(10, 36, 114, 0.28);
    --lp-shadow-orange: 0 18px 40px -14px rgba(204, 112, 0, 0.4);
}

/* ============================================
   GLOBAL — Typography + base background
   ============================================ */
body {
    font-family: var(--lp-font-body);
    color: var(--lp-ink-soft);
    background: var(--lp-mist);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--lp-font-display);
    color: var(--lp-ink);
    letter-spacing: -0.02em;
    font-weight: 700;
}

.section-title h3 {
    font-size: clamp(1.9rem, 3.2vw, 2.6rem);
    margin-bottom: 14px;
}

.section-title h3::after {
    display: none; /* drop the legacy underline; new accent below */
}

.section-title {
    position: relative;
    margin-bottom: 64px;
}

.section-title::before {
    content: "";
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--lp-orange) 0%, var(--lp-yellow) 100%);
    box-shadow: 0 6px 18px rgba(204, 112, 0, 0.35);
}

.section-title p {
    color: var(--lp-ink-soft);
    font-size: 1.05rem;
    max-width: 540px;
    margin: 0 auto;
}

/* Sections — generous breathing room */
section {
    padding: 120px 0;
    position: relative;
}

.bg-grey {
    background: linear-gradient(180deg, #ffffff 0%, var(--lp-foam) 100%) !important;
}

/* ============================================
   HEADER — transparent over hero, deep-ocean brand bar when scrolled
   ============================================ */
.header .main-menu-area {
    padding: 18px 0;
    transition: background 0.4s ease, box-shadow 0.4s ease,
                border-color 0.4s ease, padding 0.3s ease,
                backdrop-filter 0.4s ease;
}

/* Scrolled / fixed state — maritime brand bar (matches hero, counters, footer).
   .fixed-menu gets `position: fixed` from style.css:770, which establishes the
   containing block for the ::after glow line below. */
.main-menu-area.fixed-menu {
    background:
        linear-gradient(180deg, rgba(6, 26, 85, 0.92) 0%, rgba(15, 40, 71, 0.92) 100%),
        radial-gradient(1200px 200px at 12% 0%, rgba(0, 141, 181, 0.45) 0%, transparent 60%),
        radial-gradient(900px 200px at 92% 100%, rgba(204, 112, 0, 0.22) 0%, transparent 55%) !important;
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    border-bottom: 1px solid rgba(0, 141, 181, 0.22);
    box-shadow:
        0 14px 36px -14px rgba(6, 16, 50, 0.55),
        0 1px 0 rgba(255, 255, 255, 0.04) inset;
    padding: 10px 0 !important;
}

/* Cyan glow line under the scrolled bar — brand accent */
.main-menu-area.fixed-menu::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(0, 141, 181, 0) 8%,
        rgba(0, 141, 181, 0.55) 30%,
        rgba(255, 140, 0, 0.55) 70%,
        rgba(0, 141, 181, 0) 92%,
        transparent 100%);
    pointer-events: none;
}

.main-menu-area.fixed-menu .logo img {
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
    transition: filter 0.3s ease;
}

/* Nav links — white on both states, brand accents underline */
.nav-menu li a {
    font-family: var(--lp-font-body);
    font-weight: 500;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.92);
    position: relative;
    border-bottom: 0;
    transition: color 0.25s ease;
}

.nav-menu li a span:after {
    display: none;
}

.nav-menu li a::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 4px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--lp-orange), var(--lp-yellow));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.nav-menu li a.active::after,
.nav-menu li a:hover::after {
    transform: scaleX(1);
}

/* Overrides media.css:284, which sets dark text on .fixed-menu nav links. */
.main-menu-area.fixed-menu .nav-menu li a {
    color: rgba(255, 255, 255, 0.92);
}

.main-menu-area.fixed-menu .nav-menu li a:hover,
.main-menu-area.fixed-menu .nav-menu li a.active {
    color: var(--lp-cyan-soft) !important;
}

.main-menu-area.fixed-menu .menu-bar span {
    background-color: #ffffff !important;
}

/* ============================================
   HERO — atmospheric, layered, modern
   ============================================ */
.banner {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 180px 0 160px;
    color: #ffffff;
    overflow: hidden;
    position: relative;
}

.banner:before {
    background:
        radial-gradient(1100px 600px at 12% 18%, rgba(0, 141, 181, 0.55) 0%, transparent 60%),
        radial-gradient(900px 600px at 88% 82%, rgba(204, 112, 0, 0.28) 0%, transparent 55%),
        linear-gradient(135deg, #061a55 0%, #0a2472 45%, #0f2847 100%) !important;
    opacity: 1 !important;
}

/* Decorative grid + wave overlay */
.banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    pointer-events: none;
    z-index: 1;
}

.banner .container {
    position: relative;
    z-index: 3;
}

/* Eyebrow badge above hero headline */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: var(--lp-radius-pill);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #d8e6ff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-eyebrow .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lp-orange-bright);
    box-shadow: 0 0 0 4px rgba(255, 140, 0, 0.2);
    animation: heroPulse 2.4s ease-in-out infinite;
}

@keyframes heroPulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(255, 140, 0, 0.18); }
    50%      { box-shadow: 0 0 0 10px rgba(255, 140, 0, 0); }
}

.banner-text h1 {
    color: #ffffff !important;
    font-size: clamp(2.6rem, 5.4vw, 4.4rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
    font-weight: 800;
    margin-bottom: 28px;
    text-shadow: 0 6px 30px rgba(0, 0, 0, 0.25);
}

.banner-text h1 .hero-accent {
    background: linear-gradient(120deg, #ffb86b 0%, #ffd166 50%, #6fd8f5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}

.banner-text p {
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 1.18rem;
    line-height: 1.65;
    max-width: 560px;
    margin: 0 auto 36px;
    font-weight: 400;
}

/* Hero CTA — orange action + ghost secondary */
.banner-text .button-store .custom-btn {
    border-radius: var(--lp-radius-pill) !important;
    padding: 14px 26px !important;
    font-weight: 600 !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease !important;
}

.banner-text .button-store .custom-btn:first-child {
    background: linear-gradient(135deg, var(--lp-orange) 0%, var(--lp-orange-bright) 100%) !important;
    border-color: transparent !important;
    color: #fff !important;
    box-shadow: var(--lp-shadow-orange);
}

.banner-text .button-store .custom-btn:first-child:hover {
    transform: translateY(-3px);
    box-shadow: 0 28px 60px -16px rgba(204, 112, 0, 0.6);
}

.banner-text .button-store .custom-btn:first-child i,
.banner-text .button-store .custom-btn:first-child p,
.banner-text .button-store .custom-btn:first-child p span {
    color: #fff !important;
}

.banner-text .button-store .custom-btn + .custom-btn {
    background: rgba(255, 255, 255, 0.06) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    color: #ffffff !important;
}

.banner-text .button-store .custom-btn + .custom-btn i,
.banner-text .button-store .custom-btn + .custom-btn p,
.banner-text .button-store .custom-btn + .custom-btn p span {
    color: #ffffff !important;
}

.banner-text .button-store .custom-btn + .custom-btn:hover {
    background: rgba(255, 255, 255, 0.14) !important;
    transform: translateY(-3px);
}

/* Hero trust strip */
.hero-trust {
    margin-top: 56px;
    display: flex;
    flex-wrap: wrap;
    gap: 32px 56px;
    justify-content: center;
    color: rgba(255, 255, 255, 0.72);
}

.hero-trust .ht-item {
    text-align: center;
}

.hero-trust .ht-num {
    font-family: var(--lp-font-display);
    font-size: 1.85rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.hero-trust .ht-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.55);
}

/* Soft bottom curve into next section */
.banner.bottom-curve {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

/* ============================================
   SERVICES — refined glass cards
   ============================================ */
#services {
    padding-top: 140px;
}

.service-single.service-style-2 {
    background: #ffffff;
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius-lg);
    padding: 44px 32px 38px;
    box-shadow: var(--lp-shadow-sm);
    transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.service-single.service-style-2::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 141, 181, 0.06) 0%, rgba(10, 36, 114, 0.04) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.service-single.service-style-2:hover {
    transform: translateY(-10px);
    box-shadow: var(--lp-shadow-lg);
    border-color: rgba(0, 141, 181, 0.4);
    background: #ffffff !important;
}

.service-single.service-style-2:hover::before { opacity: 1; }

.service-single.service-style-2 .icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 141, 181, 0.12), rgba(10, 36, 114, 0.08));
    color: var(--lp-cyan) !important;
    margin-bottom: 22px;
    position: relative;
    font-size: 32px;
    transition: all 0.35s ease;
}

.service-single.service-style-2:hover .icon {
    background: linear-gradient(135deg, var(--lp-cyan) 0%, var(--lp-ocean) 100%);
    color: #fff !important;
    transform: rotate(-6deg) scale(1.05);
    box-shadow: 0 18px 40px -12px rgba(0, 141, 181, 0.5);
}

.service-single.service-style-2 h5 {
    font-family: var(--lp-font-display);
    font-weight: 700;
    color: var(--lp-ink);
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.service-single.service-style-2 p {
    color: var(--lp-ink-soft);
    line-height: 1.6;
}

/* ============================================
   FEATURES — modern icon list, refined center frame
   ============================================ */
#features {
    background: #ffffff;
    position: relative;
}

#features::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 320px;
    background: radial-gradient(ellipse at top, rgba(0, 141, 181, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.feature-box {
    padding: 16px 0;
    transition: transform 0.3s ease;
}

.feature-box:hover { transform: translateX(4px); }

.feature-box .box-icon {
    flex-shrink: 0;
}

.feature-box .box-icon .icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(204, 112, 0, 0.12), rgba(204, 158, 0, 0.08));
    color: var(--lp-orange) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-right: 18px;
    transition: all 0.35s ease;
}

/* Right column features use cyan tone for variety */
.col-md-6.col-lg-4:last-of-type .feature-box .box-icon .icon {
    background: linear-gradient(135deg, rgba(0, 141, 181, 0.12), rgba(10, 36, 114, 0.08));
    color: var(--lp-cyan) !important;
}

.feature-box:hover .box-icon .icon {
    transform: scale(1.06) rotate(-4deg);
    box-shadow: var(--lp-shadow);
}

.feature-box .box-text h4 {
    font-family: var(--lp-font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--lp-ink);
    margin-bottom: 8px;
    transition: color 0.25s ease;
}

.feature-box:hover .box-text > h4 {
    color: var(--lp-ocean) !important;
}

.feature-box .box-text p {
    color: var(--lp-ink-soft);
    line-height: 1.65;
    font-size: 0.95rem;
}

/* Center phone mockup — floating with halo */
.features-thumb {
    position: relative;
    padding: 40px;
}

.features-thumb::before {
    content: "";
    position: absolute;
    inset: 30px;
    background: radial-gradient(circle, rgba(0, 141, 181, 0.18) 0%, transparent 65%);
    z-index: 0;
    filter: blur(20px);
}

.features-thumb img {
    position: relative;
    z-index: 1;
    border-radius: 36px;
    box-shadow:
        0 40px 80px -20px rgba(10, 36, 114, 0.4),
        0 0 0 8px rgba(255, 255, 255, 0.6),
        0 0 0 9px rgba(10, 36, 114, 0.08);
    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}

/* ============================================
   COUNTERS — deep ocean parallax replacement
   ============================================ */
#counters.parallax {
    background: linear-gradient(135deg, #061a55 0%, #0a2472 55%, #0f2847 100%) !important;
    position: relative;
    color: #fff;
    padding: 110px 0;
    overflow: hidden;
}

#counters.parallax::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 141, 181, 0.35), transparent 55%),
        radial-gradient(circle at 80% 70%, rgba(204, 112, 0, 0.22), transparent 50%);
    pointer-events: none;
}

#counters .overlay { display: none; }

#counters .counter {
    text-align: center;
    padding: 24px 12px;
}

#counters .counter .icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--lp-cyan-soft) !important;
    font-size: 28px;
    margin-bottom: 18px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

#counters .counter h5,
#counters .counter h5 .number-count {
    font-family: var(--lp-font-display);
    font-size: 3rem;
    font-weight: 800;
    color: #fff !important;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 8px;
}

#counters .counter p {
    color: rgba(255, 255, 255, 0.72) !important;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.14em;
    margin: 0;
}

/* ============================================
   TESTIMONIALS — refined editorial layout
   ============================================ */
#testimonials .testimonial-carousel .carousel-text .single-box {
    background: #ffffff;
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius-lg);
    padding: 48px 56px;
    box-shadow: var(--lp-shadow);
    position: relative;
    margin: 0 12px;
}

#testimonials .testimonial-carousel .carousel-text .single-box::before {
    content: "“";
    position: absolute;
    top: -10px;
    left: 32px;
    font-family: Georgia, serif;
    font-size: 120px;
    color: var(--lp-cyan);
    opacity: 0.15;
    line-height: 1;
}

#testimonials .testimonial-carousel .carousel-text .single-box p {
    font-size: 1.18rem;
    color: var(--lp-ink);
    line-height: 1.65;
    font-style: italic;
    margin: 0;
    font-weight: 400;
}

#testimonials .testimonial-carousel .carousel-text .single-box i {
    color: var(--lp-cyan) !important;
    font-size: 14px;
    opacity: 0.5;
    margin: 0 6px;
}

.testimonial-carousel .carousel-images img {
    border: 3px solid rgba(0, 141, 181, 0.15);
    transition: all 0.35s ease;
}

.testimonial-carousel .carousel-images .slick-center img {
    border-color: var(--lp-orange) !important;
    box-shadow: 0 16px 40px -12px rgba(204, 112, 0, 0.5);
    transform: scale(1.08);
}

.client-info h3 {
    font-family: var(--lp-font-display);
    font-size: 1.1rem;
    color: var(--lp-ink);
    margin-top: 18px;
    margin-bottom: 4px;
}

.client-info span {
    color: var(--lp-cyan);
    font-size: 13px;
    letter-spacing: 0.04em;
    font-weight: 500;
    text-transform: uppercase;
}

/* ============================================
   SCREENSHOTS — clean modern carousel
   ============================================ */
#screenshots {
    background: linear-gradient(180deg, var(--lp-foam) 0%, #ffffff 100%) !important;
}

.screenshot-slider .item img {
    border-radius: 24px;
    box-shadow: 0 26px 60px -20px rgba(10, 36, 114, 0.35);
    border: 6px solid #ffffff;
    transition: transform 0.35s ease;
}

.screenshot-slider .item:hover img {
    transform: translateY(-6px);
}

.screenshot-slider .owl-dots {
    margin-top: 36px !important;
}

.screenshot-slider .owl-dots .owl-dot span {
    background: var(--lp-line);
    width: 10px;
    height: 10px;
    transition: all 0.3s ease;
}

.screenshot-slider .owl-dots .active span {
    background: var(--lp-orange) !important;
    width: 28px;
    border-radius: 999px;
}

/* ============================================
   CONTACT — modern card grid
   ============================================ */
#contact {
    background: #ffffff;
    padding-bottom: 140px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1080px;
    margin: 0 auto;
}

.contact-card {
    background: #ffffff;
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius-lg);
    padding: 32px;
    box-shadow: var(--lp-shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--lp-shadow);
    border-color: rgba(0, 141, 181, 0.4);
}

.contact-card .ic {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 141, 181, 0.14), rgba(10, 36, 114, 0.08));
    color: var(--lp-cyan);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 18px;
}

.contact-card .label {
    font-family: var(--lp-font-display);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--lp-ink-soft);
    margin-bottom: 8px;
}

.contact-card .value {
    color: var(--lp-ink);
    font-size: 1.02rem;
    line-height: 1.55;
}

.contact-card .value a {
    color: var(--lp-ocean);
    font-weight: 600;
    text-decoration: none;
}

.contact-card .value a:hover { color: var(--lp-orange); }

/* ============================================
   FOOTER — deep ocean closing
   ============================================ */
footer .footer-widgets {
    background: linear-gradient(180deg, #0a2472 0%, #061a55 100%) !important;
    color: rgba(255, 255, 255, 0.78);
    padding: 80px 0 56px;
}

footer .footer-widgets h6 {
    color: #ffffff;
    font-family: var(--lp-font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.85rem;
    margin-bottom: 22px;
}

footer .footer-widgets p,
footer .footer-widgets a,
footer .footer-menu li a {
    color: rgba(255, 255, 255, 0.72);
    transition: color 0.25s ease;
}

footer .footer-menu li a:hover {
    color: var(--lp-orange-bright) !important;
}

footer .footer-social {
    margin-top: 22px;
    display: flex;
    gap: 10px;
}

footer .footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff !important;
    transition: all 0.25s ease;
}

footer .footer-social a:hover {
    background: var(--lp-orange);
    border-color: var(--lp-orange);
    transform: translateY(-3px);
}

footer .footer-social a:hover > i { color: #fff !important; }

footer .footer-widgets .button-store .custom-btn {
    border-radius: var(--lp-radius-pill) !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
}

footer .footer-widgets .button-store .custom-btn:hover {
    background: var(--lp-orange) !important;
    border-color: var(--lp-orange) !important;
}

footer .footer-copyright {
    background: #04123e !important;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

footer .footer-copyright .copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin: 0;
}

footer .footer-copyright .copyright a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.to-top {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--lp-ocean) !important;
    color: #fff;
    box-shadow: var(--lp-shadow);
    transition: all 0.3s ease;
}

.to-top:hover {
    background: var(--lp-orange) !important;
    transform: translateY(-4px);
}

/* ============================================
   PAGE LOADER
   ============================================ */
.page-loader {
    background: #061a55;
}

.page-loader .progress {
    border-color: rgba(255, 255, 255, 0.15);
    border-left-color: var(--lp-orange-bright) !important;
}

/* ============================================
   DOWNLOAD — QR code cards
   ============================================ */
.download-section {
    background:
        radial-gradient(900px 500px at 15% 10%, rgba(0, 141, 181, 0.10) 0%, transparent 60%),
        radial-gradient(700px 400px at 90% 90%, rgba(204, 112, 0, 0.08) 0%, transparent 55%),
        linear-gradient(180deg, #ffffff 0%, var(--lp-foam) 100%);
    position: relative;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.download-card {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 32px;
    background: #ffffff;
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius-lg);
    box-shadow: var(--lp-shadow-sm);
    text-decoration: none !important;
    color: inherit !important;
    transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1),
        box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
    overflow: hidden;
}

.download-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 141, 181, 0.04) 0%, rgba(10, 36, 114, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.download-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 141, 181, 0.45);
    box-shadow: var(--lp-shadow-lg);
}

.download-card:hover::before { opacity: 1; }

/* iOS card — orange accent on hover */
.download-card:last-of-type:hover {
    border-color: rgba(204, 112, 0, 0.5);
}

.dl-qr {
    flex-shrink: 0;
    width: 132px;
    height: 132px;
    padding: 10px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid var(--lp-line);
    box-shadow: var(--lp-shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.dl-qr img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.dl-content {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.dl-eyebrow {
    display: inline-block;
    font-family: var(--lp-font-display);
    font-size: 11px;
    font-weight: 600;
    color: var(--lp-cyan);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 10px;
}

.download-card:last-of-type .dl-eyebrow {
    color: var(--lp-orange);
}

.dl-store {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--lp-font-display);
    color: var(--lp-ink);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.dl-store i {
    font-size: 24px;
    color: var(--lp-ocean);
}

.dl-store strong {
    font-weight: 700;
}

.dl-hint {
    color: var(--lp-ink-soft);
    font-size: 0.92rem;
    line-height: 1.55;
    margin: 0 0 14px;
}

.dl-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--lp-font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--lp-ocean);
    letter-spacing: -0.01em;
    transition: gap 0.25s ease, color 0.25s ease;
}

.dl-cta i {
    font-size: 12px;
    transition: transform 0.25s ease;
}

.download-card:hover .dl-cta {
    gap: 14px;
    color: var(--lp-orange);
}

.download-card:hover .dl-cta i {
    transform: translateX(2px);
}

@media (max-width: 767px) {
    .download-grid {
        grid-template-columns: 1fr;
    }
    .download-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 22px;
        padding: 28px 24px;
    }
    .dl-store {
        justify-content: center;
    }
}

/* ============================================
   RESPONSIVE TUNING
   ============================================ */
@media (max-width: 991px) {
    section { padding: 80px 0; }
    .banner { padding: 140px 0 100px; min-height: auto; }
    .banner-text h1 { font-size: 2.6rem; }
    .hero-trust { gap: 24px 36px; margin-top: 40px; }
    .hero-trust .ht-num { font-size: 1.5rem; }
    .section-title { margin-bottom: 48px; }
    #testimonials .testimonial-carousel .carousel-text .single-box {
        padding: 36px 28px;
    }
    #counters .counter h5,
    #counters .counter h5 .number-count { font-size: 2.4rem; }
}

@media (max-width: 575px) {
    .banner-text h1 { font-size: 2.1rem; }
    .banner-text p { font-size: 1rem; }
    .hero-eyebrow { font-size: 11px; }
}

/* ============================================
   PRICING — Dynamic packages from admin
   ============================================ */
.pricing-section {
    position: relative;
    padding: 120px 0;
    background: var(--lp-mist);
    overflow: hidden;
    isolation: isolate;
}

.pricing-section__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(900px 520px at 8% 6%, rgba(0, 141, 181, 0.18) 0%, transparent 60%),
        radial-gradient(820px 600px at 96% 96%, rgba(204, 112, 0, 0.10) 0%, transparent 55%),
        linear-gradient(180deg, var(--lp-mist) 0%, var(--lp-foam) 100%);
}

.pricing-section__bg::before,
.pricing-section__bg::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    pointer-events: none;
}

.pricing-section__bg::before {
    top: -120px;
    left: -80px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, var(--lp-cyan-soft) 0%, transparent 70%);
}

.pricing-section__bg::after {
    bottom: -140px;
    right: -100px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(204, 112, 0, 0.45) 0%, transparent 70%);
}

/* Intro */
.pricing-intro {
    margin-bottom: 64px;
}

.pricing-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    margin-bottom: 20px;
    border-radius: var(--lp-radius-pill);
    background: rgba(0, 141, 181, 0.10);
    color: var(--lp-cyan);
    font-family: var(--lp-font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.pricing-eyebrow__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lp-cyan);
    box-shadow: 0 0 0 4px rgba(0, 141, 181, 0.18);
}

.pricing-title {
    font-family: var(--lp-font-display);
    font-size: clamp(1.8rem, 2.6vw, 2.4rem);
    font-weight: 700;
    color: var(--lp-ink);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 auto 16px;
    max-width: 720px;
}

.pricing-subtitle {
    font-family: var(--lp-font-body);
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--lp-ink-soft);
    max-width: 640px;
    margin: 0 auto;
}

/* Grid */
.pricing-grid {
    --gap: 28px;
    row-gap: var(--gap);
}

/* Card */
.pricing-card {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius-lg);
    padding: 40px 32px 36px;
    box-shadow: var(--lp-shadow-sm);
    transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1),
                box-shadow 0.35s cubic-bezier(0.2, 0.7, 0.2, 1),
                border-color 0.35s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--lp-shadow);
    border-color: rgba(0, 141, 181, 0.30);
}

/* Highlighted card — gradient border ring */
.pricing-card.is-highlighted {
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(135deg, var(--lp-cyan) 0%, var(--lp-orange) 100%) border-box;
    border: 2px solid transparent;
    padding: 39px 31px 35px;
    transform: translateY(-10px) scale(1.025);
    box-shadow: var(--lp-shadow-lg);
}

.pricing-card.is-highlighted:hover {
    transform: translateY(-16px) scale(1.025);
    box-shadow: var(--lp-shadow-lg), var(--lp-shadow-orange);
}

/* Badge */
.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    font-family: var(--lp-font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff;
    background: linear-gradient(135deg, var(--lp-orange) 0%, var(--lp-orange-bright) 100%);
    border-radius: var(--lp-radius-pill);
    box-shadow: var(--lp-shadow-orange);
    z-index: 2;
    white-space: nowrap;
}

.pricing-badge i {
    font-size: 10px;
}

/* Head */
.pricing-head {
    margin-bottom: 22px;
}

.pricing-name {
    font-family: var(--lp-font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--lp-ocean);
    letter-spacing: -0.01em;
    margin: 0;
}

/* Divider */
.pricing-divider {
    height: 1px;
    background: var(--lp-line);
    margin: 0 -8px 22px;
}

/* Price */
.pricing-price {
    margin-bottom: 28px;
    line-height: 1.2;
}

.pricing-price__main {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    white-space: nowrap;
}

.pricing-price .amount {
    font-family: var(--lp-font-display);
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--lp-ink);
}

.pricing-card.is-highlighted .pricing-price .amount {
    background: linear-gradient(135deg, var(--lp-orange) 0%, var(--lp-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.pricing-price .currency {
    font-family: var(--lp-font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--lp-ink-soft);
    letter-spacing: -0.01em;
}

.pricing-card.is-highlighted .pricing-price .currency {
    color: var(--lp-orange);
}

.pricing-price .period {
    display: block;
    margin-top: 8px;
    font-family: var(--lp-font-body);
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--lp-ink-soft);
}

/* Features */
.pricing-features {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    flex: 1 1 auto;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    color: var(--lp-ink);
    font-family: var(--lp-font-body);
    font-size: 0.95rem;
    line-height: 1.55;
}

.pricing-features__icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(0, 141, 181, 0.12);
    color: var(--lp-cyan);
    font-size: 10px;
    margin-top: 3px;
    transition: transform 0.25s ease;
}

.pricing-card:hover .pricing-features__icon {
    transform: scale(1.08);
}

.pricing-card.is-highlighted .pricing-features__icon {
    background: rgba(204, 112, 0, 0.14);
    color: var(--lp-orange);
}

/* Note */
.pricing-note {
    color: var(--lp-ink-soft);
    font-family: var(--lp-font-body);
    font-size: 0.875rem;
    font-style: italic;
    line-height: 1.55;
    margin: 0 0 22px;
    padding: 12px 14px;
    background: var(--lp-foam);
    border-radius: var(--lp-radius-sm);
    border-left: 3px solid var(--lp-cyan-soft);
}

.pricing-card.is-highlighted .pricing-note {
    background: rgba(204, 112, 0, 0.06);
    border-left-color: var(--lp-orange);
}

/* CTA */
.pricing-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    margin-top: auto;
    background: var(--lp-ink);
    color: #ffffff !important;
    border-radius: var(--lp-radius-pill);
    font-family: var(--lp-font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    text-decoration: none;
    box-shadow: 0 10px 24px -12px rgba(10, 36, 114, 0.5);
    transition: background 0.25s ease, transform 0.25s ease,
                box-shadow 0.25s ease, gap 0.25s ease;
}

.pricing-cta:hover {
    background: linear-gradient(135deg, var(--lp-ink) 0%, var(--lp-ocean) 100%);
    color: #ffffff !important;
    transform: translateY(-2px);
    gap: 14px;
    box-shadow: 0 14px 28px -10px rgba(10, 36, 114, 0.55);
    text-decoration: none;
}

.pricing-card.is-highlighted .pricing-cta {
    background: linear-gradient(135deg, var(--lp-orange) 0%, var(--lp-orange-bright) 100%);
    box-shadow: var(--lp-shadow-orange);
}

.pricing-card.is-highlighted .pricing-cta:hover {
    background: linear-gradient(135deg, var(--lp-orange-bright) 0%, var(--lp-yellow) 100%);
    box-shadow: 0 18px 36px -12px rgba(204, 112, 0, 0.55);
}

.pricing-cta i {
    font-size: 0.8rem;
    transition: transform 0.25s ease;
}

.pricing-cta:hover i {
    transform: translateX(3px);
}

/* Footer */
.pricing-foot {
    margin-top: 56px;
}

.pricing-foot__text {
    font-family: var(--lp-font-body);
    font-size: 0.98rem;
    color: var(--lp-ink-soft);
    margin: 0 0 12px;
}

.pricing-foot__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--lp-font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--lp-cyan);
    text-decoration: none;
    transition: color 0.25s ease, gap 0.25s ease;
}

.pricing-foot__link:hover {
    color: var(--lp-ocean);
    gap: 12px;
    text-decoration: none;
}

.pricing-foot__link i {
    font-size: 0.78rem;
}

/* Responsive */
@media (max-width: 991px) {
    .pricing-section {
        padding: 80px 0;
    }
    .pricing-intro {
        margin-bottom: 48px;
    }
    .pricing-card.is-highlighted {
        transform: translateY(-4px) scale(1.01);
    }
    .pricing-card.is-highlighted:hover {
        transform: translateY(-10px) scale(1.01);
    }
}

@media (max-width: 575px) {
    .pricing-section {
        padding: 64px 0;
    }
    .pricing-card {
        padding: 32px 22px 28px;
    }
    .pricing-card.is-highlighted {
        padding: 31px 21px 27px;
        transform: none;
    }
    .pricing-card.is-highlighted:hover {
        transform: translateY(-6px);
    }
    .pricing-price .amount {
        font-size: 2.1rem;
    }
    .pricing-foot {
        margin-top: 40px;
    }
}

/* ============================================
   POLICY / LEGAL PAGE
   ============================================ */

/* Hero — deep ocean, matches banner/counters */
.policy-hero {
    position: relative;
    padding: 170px 0 90px;
    background:
        radial-gradient(900px 500px at 15% 12%, rgba(0, 141, 181, 0.45) 0%, transparent 60%),
        radial-gradient(800px 500px at 88% 90%, rgba(204, 112, 0, 0.22) 0%, transparent 55%),
        linear-gradient(135deg, #061a55 0%, #0a2472 50%, #0f2847 100%);
    color: #fff;
    overflow: hidden;
}

.policy-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse at center, black 25%, transparent 72%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 25%, transparent 72%);
    pointer-events: none;
}

.policy-hero .container {
    position: relative;
    z-index: 2;
}

.policy-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    margin-bottom: 22px;
    border-radius: var(--lp-radius-pill);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #d8e6ff;
    font-family: var(--lp-font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.policy-eyebrow__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lp-orange-bright);
    box-shadow: 0 0 0 4px rgba(255, 140, 0, 0.2);
}

.policy-hero__title {
    color: #ffffff !important;
    font-family: var(--lp-font-display);
    font-size: clamp(2.2rem, 4.4vw, 3.4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0 0 18px;
    text-shadow: 0 6px 30px rgba(0, 0, 0, 0.25);
}

.policy-hero__subtitle {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
    line-height: 1.65;
    max-width: 640px;
    margin: 0 auto 22px;
}

.policy-hero__meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.02em;
}

.policy-hero__meta i {
    color: var(--lp-cyan-soft);
}

/* Body */
.policy-body {
    background: linear-gradient(180deg, var(--lp-mist) 0%, var(--lp-foam) 100%);
    padding: 80px 0 120px;
}

.policy-lead {
    font-size: 1.12rem;
    line-height: 1.75;
    color: var(--lp-ink-soft);
    margin: 0 0 36px;
}

/* Table of contents */
.policy-toc {
    background: #ffffff;
    border: 1px solid var(--lp-line);
    border-left: 4px solid var(--lp-cyan);
    border-radius: var(--lp-radius);
    padding: 26px 30px;
    margin-bottom: 40px;
    box-shadow: var(--lp-shadow-sm);
}

.policy-toc__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--lp-font-display);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--lp-ocean);
    margin: 0 0 16px;
}

.policy-toc__title i {
    color: var(--lp-cyan);
    font-size: 0.9rem;
}

.policy-toc__list {
    margin: 0;
    padding-left: 1.2em;
    columns: 2;
    column-gap: 36px;
}

.policy-toc__list li {
    margin-bottom: 10px;
    color: var(--lp-cyan);
    break-inside: avoid;
}

.policy-toc__list a {
    color: var(--lp-ink-soft);
    text-decoration: none;
    font-size: 0.96rem;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.policy-toc__list a:hover {
    color: var(--lp-cyan);
    padding-left: 3px;
}

/* Sections */
.policy-section {
    background: #ffffff;
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius-lg);
    padding: 34px 36px;
    margin-bottom: 22px;
    box-shadow: var(--lp-shadow-sm);
    scroll-margin-top: 110px;
    transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.policy-section:hover {
    box-shadow: var(--lp-shadow);
    border-color: rgba(0, 141, 181, 0.25);
}

.policy-section__heading {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--lp-font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--lp-ink);
    margin: 0 0 16px;
    letter-spacing: -0.01em;
}

.policy-section__num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--lp-cyan) 0%, var(--lp-ocean) 100%);
    box-shadow: 0 10px 22px -10px rgba(0, 141, 181, 0.6);
}

.policy-section p {
    color: var(--lp-ink-soft);
    font-size: 1.02rem;
    line-height: 1.75;
    margin: 0 0 14px;
}

.policy-section p:last-child {
    margin-bottom: 0;
}

/* Branded lists */
.policy-list {
    list-style: none;
    margin: 0 0 6px;
    padding: 0;
}

.policy-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 14px;
    color: var(--lp-ink-soft);
    font-size: 1.02rem;
    line-height: 1.7;
}

.policy-list li:last-child {
    margin-bottom: 0;
}

.policy-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(0, 141, 181, 0.14);
    box-shadow: inset 0 0 0 4px var(--lp-cyan);
}

.policy-list li strong {
    color: var(--lp-ink);
    font-weight: 600;
}

/* Closing CTA */
.policy-cta {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-top: 44px;
    padding: 36px 40px;
    border-radius: var(--lp-radius-lg);
    background:
        radial-gradient(600px 300px at 100% 0%, rgba(0, 141, 181, 0.4) 0%, transparent 60%),
        linear-gradient(135deg, #0a2472 0%, #061a55 100%);
    color: #fff;
    box-shadow: var(--lp-shadow-lg);
    position: relative;
    overflow: hidden;
}

.policy-cta__icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--lp-cyan-soft);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.policy-cta__body {
    flex: 1;
    min-width: 0;
}

.policy-cta__title {
    color: #fff;
    font-family: var(--lp-font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 6px;
}

.policy-cta__text {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.98rem;
    line-height: 1.6;
    margin: 0;
}

.policy-cta__actions {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.policy-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: var(--lp-radius-pill);
    background: linear-gradient(135deg, var(--lp-orange) 0%, var(--lp-orange-bright) 100%);
    color: #fff !important;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: var(--lp-shadow-orange);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    white-space: nowrap;
}

.policy-cta__btn:hover {
    transform: translateY(-2px);
    color: #fff !important;
    box-shadow: 0 22px 44px -16px rgba(204, 112, 0, 0.6);
}

.policy-cta__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.25s ease, color 0.25s ease;
}

.policy-cta__link:hover {
    gap: 12px;
    color: var(--lp-cyan-soft) !important;
}

.policy-cta__link i {
    font-size: 0.78rem;
}

/* Responsive */
@media (max-width: 991px) {
    .policy-hero {
        padding: 140px 0 70px;
    }
    .policy-body {
        padding: 64px 0 90px;
    }
    .policy-section {
        padding: 28px 26px;
    }
}

@media (max-width: 767px) {
    .policy-toc__list {
        columns: 1;
    }
    .policy-cta {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 30px 26px;
        gap: 20px;
    }
    .policy-cta__actions {
        width: 100%;
    }
    .policy-cta__btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .policy-section__heading {
        font-size: 1.15rem;
        gap: 12px;
    }
    .policy-section__num {
        width: 34px;
        height: 34px;
        font-size: 0.95rem;
    }
}

/* ============================================
   HERO — rating social proof
   ============================================ */
.hero-rating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    padding: 8px 16px;
    border-radius: var(--lp-radius-pill);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.92rem;
}

.hero-rating__stars {
    display: inline-flex;
    gap: 2px;
    color: #ffd166;
    font-size: 0.9rem;
}

.hero-rating__text {
    letter-spacing: 0.01em;
}

.hero-rating__text strong {
    color: #fff;
    font-weight: 700;
}

/* ============================================
   FAQ — native details accordion
   ============================================ */
.faq-section {
    background: var(--lp-mist);
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius);
    margin-bottom: 14px;
    box-shadow: var(--lp-shadow-sm);
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item[open] {
    border-color: rgba(0, 141, 181, 0.3);
    box-shadow: var(--lp-shadow);
}

.faq-question {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 26px;
    font-family: var(--lp-font-display);
    font-weight: 600;
    font-size: 1.06rem;
    color: var(--lp-ink);
    transition: color 0.25s ease;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question:hover {
    color: var(--lp-ocean);
}

.faq-item[open] .faq-question {
    color: var(--lp-ocean);
}

/* Plus / minus toggle icon */
.faq-icon {
    flex-shrink: 0;
    position: relative;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0, 141, 181, 0.1);
    transition: background 0.3s ease, transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 11px;
    height: 2px;
    border-radius: 2px;
    background: var(--lp-cyan);
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-icon {
    background: var(--lp-cyan);
    transform: rotate(180deg);
}

.faq-item[open] .faq-icon::before {
    background: #ffffff;
}

.faq-item[open] .faq-icon::after {
    opacity: 0;
}

.faq-answer {
    padding: 0 26px 24px;
}

.faq-item[open] .faq-answer {
    animation: faqReveal 0.35s ease;
}

@keyframes faqReveal {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-answer p {
    margin: 0;
    color: var(--lp-ink-soft);
    font-size: 1rem;
    line-height: 1.72;
}

.faq-answer a {
    color: var(--lp-cyan);
    font-weight: 600;
    text-decoration: none;
}

.faq-answer a:hover {
    color: var(--lp-orange);
}

@media (max-width: 575px) {
    .faq-question {
        padding: 18px 20px;
        font-size: 0.98rem;
        gap: 12px;
    }
    .faq-answer {
        padding: 0 20px 20px;
    }
}

