/* ============================================================
   TierLux – Premium Tierbedarf Stylesheet
   ============================================================ */
:root {
    --navy: #0F172A;
    --navy-light: #1E293B;
    --amber: #F59E0B;
    --amber-light: #FBBF24;
    --green: #22C55E;
    --bg: #F8FAFC;
    --white: #FFFFFF;
    --text: #1E293B;
    --muted: #64748B;
    --border: #E2E8F0;
    --grad-navy: linear-gradient(135deg, #0F172A, #1E293B);
    --grad-amber: linear-gradient(135deg, #F59E0B, #FBBF24);
    --shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
    --radius: 14px;
    --radius-lg: 20px;
    --font-head: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --ease: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.7; overflow-x: hidden; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); font-weight: 700; line-height: 1.25; color: var(--text); }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; transition: var(--ease); }

/* Preloader */
#preloader { position: fixed; inset: 0; z-index: 99999; background: var(--bg); display: grid; place-items: center; transition: opacity .5s, visibility .5s; }
#preloader.done { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-ring { width: 48px; height: 48px; border: 3px solid var(--border); border-top-color: var(--amber); border-radius: 50%; margin: 0 auto 10px; animation: spin .8s linear infinite; }
.preloader-inner span { font-family: var(--font-head); font-weight: 700; color: var(--navy); }
@keyframes spin { to { transform: rotate(360deg); } }

/* Cookie */
.cookie-consent { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998; background: var(--white); border-top: 1px solid var(--border); box-shadow: 0 -8px 30px rgba(0,0,0,.06); padding: 1rem 0; transform: translateY(110%); transition: transform .4s; }
.cookie-consent.show { transform: translateY(0); }
.cookie-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.cookie-inner p { margin: 0; font-size: .875rem; color: var(--muted); max-width: 680px; }
.cookie-inner a { color: var(--amber); font-weight: 600; }
.cookie-btns { display: flex; gap: .5rem; }
.btn-cookie-accept { background: var(--navy); color: #fff; border: none; padding: .5rem 1.25rem; border-radius: 999px; font-weight: 600; cursor: pointer; }
.btn-cookie-accept:hover { background: var(--navy-light); }
.btn-cookie-decline { background: transparent; border: 1px solid var(--border); padding: .5rem 1.25rem; border-radius: 999px; cursor: pointer; color: var(--muted); }

/* Header */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: var(--ease); }
.header-promo { background: var(--grad-navy); color: rgba(255,255,255,.85); font-size: .75rem; padding: .35rem 0; }
.header-promo i { color: var(--amber); margin-right: .3rem; }
.header-main { background: rgba(248,250,252,.95); backdrop-filter: blur(12px); border-bottom: 1px solid transparent; transition: var(--ease); }
.site-header.scrolled .header-main { border-color: var(--border); box-shadow: var(--shadow); }
.is-home .site-header:not(.scrolled) .header-main { background: transparent; border: none; }
.is-home .site-header:not(.scrolled) .nav-item { color: rgba(255,255,255,.9); }
.is-home .site-header:not(.scrolled) .nav-item:hover, .is-home .site-header:not(.scrolled) .nav-item.active { color: var(--amber); }
.is-home .site-header:not(.scrolled) .brand-text { color: #fff; }
.is-home .site-header:not(.scrolled) .brand-text small { color: rgba(255,255,255,.7); }
.is-home .site-header:not(.scrolled) .search-bar { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.2); }
.is-home .site-header:not(.scrolled) .search-bar input { color: #fff; }
.is-home .site-header:not(.scrolled) .search-bar input::placeholder { color: rgba(255,255,255,.6); }
.is-home .site-header:not(.scrolled) .hamburger span { background: #fff; }
.header-grid { display: flex; align-items: center; gap: 1.5rem; padding: .75rem 0; }
.brand { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.brand-icon { width: 40px; height: 40px; background: var(--grad-amber); border-radius: 11px; display: grid; place-items: center; color: var(--navy); font-size: 1.15rem; }
.brand-text { font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; line-height: 1.1; color: var(--navy); }
.brand-text small { display: block; font-family: var(--font-body); font-size: .6rem; font-weight: 500; color: var(--muted); letter-spacing: .04em; }
.main-nav { display: flex; gap: .15rem; margin: 0 auto; }
.nav-item { padding: .45rem .85rem; font-weight: 500; font-size: .9rem; border-radius: 999px; color: var(--text); }
.nav-item:hover, .nav-item.active { color: var(--amber); background: rgba(245,158,11,.1); }
.header-tools { display: flex; align-items: center; gap: .65rem; margin-left: auto; }
.main-nav + .header-tools { margin-left: 0; }
.search-bar { display: flex; align-items: center; background: var(--white); border: 1px solid var(--border); border-radius: 999px; padding: 0 .25rem 0 1rem; }
.search-bar input { border: none; background: transparent; outline: none; font-size: .85rem; width: 150px; padding: .4rem 0; }
.search-bar button { border: none; background: var(--navy); color: #fff; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; display: grid; place-items: center; font-size: .85rem; }
.btn-amber { background: var(--grad-amber); color: var(--navy) !important; border: none; padding: .55rem 1.25rem; border-radius: 999px; font-family: var(--font-head); font-weight: 700; font-size: .875rem; display: inline-flex; align-items: center; justify-content: center; transition: var(--ease); }
.btn-amber:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,158,11,.35); color: var(--navy); }
.btn-navy { background: var(--grad-navy); color: #fff !important; border: none; padding: .55rem 1.25rem; border-radius: 999px; font-weight: 600; font-size: .875rem; }
.btn-navy:hover { opacity: .92; transform: translateY(-2px); color: #fff; }
.btn-outline-navy { background: transparent; border: 2px solid var(--navy); color: var(--navy); padding: .5rem 1.2rem; border-radius: 999px; font-weight: 600; font-size: .875rem; }
.btn-outline-navy:hover { background: var(--navy); color: #fff; }
.hamburger { width: 32px; height: 22px; border: none; background: none; display: flex; flex-direction: column; justify-content: space-between; cursor: pointer; padding: 0; }
.hamburger span { display: block; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--ease); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--bg); z-index: 999; padding: 5rem 1.5rem 2rem; transform: translateX(100%); transition: transform .4s; display: flex; flex-direction: column; gap: .25rem; }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { padding: .85rem 0; font-size: 1.1rem; font-weight: 600; border-bottom: 1px solid var(--border); color: var(--text); }
.mobile-menu .search-bar { margin-bottom: 1rem; width: 100%; }
.sticky-shop-cta { position: fixed; bottom: 80px; right: 16px; z-index: 900; background: var(--grad-amber); color: var(--navy); padding: .65rem 1rem; border-radius: 999px; font-weight: 700; font-size: .85rem; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: .4rem; }

/* Sections */
.section { padding: 5rem 0; }
.label { display: inline-flex; align-items: center; gap: .5rem; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--amber); margin-bottom: .65rem; }
.label::before { content: ''; width: 20px; height: 2px; background: var(--green); border-radius: 2px; }
.section-title { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: .75rem; }
.section-desc { color: var(--muted); max-width: 520px; font-size: 1.02rem; }

/* Hero – curved overlay + floating product */
.hero-wrap { position: relative; min-height: 95vh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,23,42,.75) 0%, rgba(15,23,42,.55) 40%, rgba(15,23,42,.85) 100%); }
.hero-content { position: relative; z-index: 2; width: 100%; padding: 8rem 0 5rem; color: #fff; }
.hero-content h1 { font-size: clamp(2.2rem, 5.5vw, 3.6rem); color: #fff; margin-bottom: 1.25rem; max-width: 680px; }
.hero-content h1 span { color: var(--amber); }
.hero-content p { font-size: 1.1rem; opacity: .88; max-width: 520px; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 2.5rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.5rem 2rem; }
.hero-trust-item { display: flex; align-items: center; gap: .5rem; font-size: .875rem; opacity: .85; }
.hero-trust-item i { color: var(--green); font-size: 1.1rem; }
.hero-float-card {
    position: absolute; right: 5%; bottom: 15%; z-index: 3;
    background: var(--white); border-radius: var(--radius-lg); padding: 1.25rem;
    box-shadow: var(--shadow-lg); max-width: 280px; display: none;
}
@media (min-width: 992px) { .hero-float-card { display: block; } }
.hero-float-card img { border-radius: var(--radius); margin-bottom: .75rem; aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.hero-float-card h4 { font-size: .95rem; margin-bottom: .25rem; }
.hero-float-card .price { font-family: var(--font-head); font-weight: 800; color: var(--navy); font-size: 1.15rem; }
.hero-curve { position: absolute; bottom: -1px; left: 0; right: 0; height: 60px; background: var(--bg); border-radius: 50% 50% 0 0 / 100% 100% 0 0; z-index: 2; }

/* Trust strip */
.trust-strip { background: var(--white); border-bottom: 1px solid var(--border); padding: 1.25rem 0; margin-top: -30px; position: relative; z-index: 5; }
.trust-strip-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
@media (max-width: 767px) { .trust-strip-inner { grid-template-columns: repeat(2, 1fr); } }
.trust-cell { display: flex; align-items: center; gap: .75rem; padding: .5rem; }
.trust-cell-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(34,197,94,.1); color: var(--green); display: grid; place-items: center; font-size: 1.1rem; flex-shrink: 0; }
.trust-cell strong { display: block; font-size: .85rem; font-family: var(--font-head); }
.trust-cell span { font-size: .75rem; color: var(--muted); }

/* Product cards */
.product-card {
    background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
    border: 1px solid var(--border); transition: var(--ease); height: 100%;
    display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.product-img { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--bg); }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.product-card:hover .product-img img { transform: scale(1.07); }
.product-badge { position: absolute; top: 12px; left: 12px; background: var(--grad-amber); color: var(--navy); font-size: .65rem; font-weight: 800; text-transform: uppercase; padding: .25rem .6rem; border-radius: 999px; }
.product-wish { position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; border-radius: 50%; background: var(--white); border: none; display: grid; place-items: center; cursor: pointer; color: var(--muted); transition: var(--ease); }
.product-wish:hover { color: #ef4444; }
.product-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.product-body h3 { font-size: 1rem; margin-bottom: .35rem; }
.product-body h3 a:hover { color: var(--amber); }
.product-body p { font-size: .825rem; color: var(--muted); flex: 1; margin-bottom: .75rem; line-height: 1.5; }
.product-rating { color: var(--amber); font-size: .75rem; margin-bottom: .65rem; }
.product-rating span { color: var(--muted); margin-left: .25rem; }
.product-price { font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; color: var(--navy); margin-bottom: .85rem; }
.product-price del { font-size: .8rem; color: var(--muted); font-weight: 500; margin-left: .4rem; }
.product-body .btn { margin-top: auto; width: 100%; font-size: .825rem; padding: .55rem; }

/* Bento featured grid */
.bento-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.25rem; }
.bento-item { border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.bento-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.bento-item:hover img { transform: scale(1.05); }
.bento-item-a { grid-column: span 7; grid-row: span 2; min-height: 380px; }
.bento-item-b { grid-column: span 5; min-height: 180px; }
.bento-item-c { grid-column: span 5; min-height: 180px; }
@media (max-width: 991px) {
    .bento-grid { grid-template-columns: 1fr; }
    .bento-item-a, .bento-item-b, .bento-item-c { grid-column: span 1; min-height: 220px; }
}
.bento-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,23,42,.85), transparent 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; color: #fff; }
.bento-overlay h3 { color: #fff; font-size: 1.15rem; margin-bottom: .25rem; }
.bento-overlay span { font-size: .85rem; opacity: .8; }

/* Feature cards */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
@media (max-width: 991px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-card {
    background: var(--white); border-radius: var(--radius-lg); padding: 2rem 1.5rem;
    border: 1px solid var(--border); text-align: center; transition: var(--ease);
    position: relative; overflow: hidden;
}
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad-amber); transform: scaleX(0); transition: var(--ease); transform-origin: left; }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon { width: 56px; height: 56px; margin: 0 auto 1rem; border-radius: 16px; background: rgba(245,158,11,.12); color: var(--amber); display: grid; place-items: center; font-size: 1.4rem; }
.feature-card h3 { font-size: 1rem; margin-bottom: .4rem; }
.feature-card p { font-size: .875rem; color: var(--muted); margin: 0; }

/* Stats */
.stats-bar { background: var(--grad-navy); padding: 3rem 0; color: #fff; }
.stat-box { text-align: center; padding: 1rem; }
.stat-num { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 800; color: var(--amber); line-height: 1; }
.stat-label { font-size: .875rem; opacity: .75; margin-top: .35rem; }

/* Testimonials */
.testimonial-slider { overflow: hidden; }
.testimonial-track { display: flex; transition: transform .5s ease; }
.testimonial-slide { flex: 0 0 100%; padding: 0 .5rem; }
@media (min-width: 768px) { .testimonial-slide { flex: 0 0 50%; } }
@media (min-width: 992px) { .testimonial-slide { flex: 0 0 33.333%; } }
.testimonial-card { background: var(--white); border-radius: var(--radius-lg); padding: 1.75rem; border: 1px solid var(--border); height: 100%; }
.testimonial-card .stars { color: var(--amber); margin-bottom: .85rem; font-size: .85rem; }
.testimonial-card blockquote { font-size: .925rem; color: var(--muted); font-style: italic; border: none; padding: 0; margin: 0 0 1.25rem; }
.testimonial-user { display: flex; align-items: center; gap: .75rem; }
.testimonial-user img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.testimonial-user strong { display: block; font-size: .875rem; }
.testimonial-user span { font-size: .75rem; color: var(--muted); }
.slider-btns { display: flex; justify-content: center; gap: .65rem; margin-top: 1.75rem; }
.slider-btns button { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border); background: var(--white); color: var(--navy); cursor: pointer; transition: var(--ease); }
.slider-btns button:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* FAQ */
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: .65rem; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 1.1rem 1.35rem; font-family: var(--font-head); font-weight: 600; font-size: .925rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-q i { color: var(--amber); transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 1.35rem 1.1rem; font-size: .875rem; color: var(--muted); }

/* Page banner – inner pages */
.page-banner { background: var(--grad-navy); padding: 7.5rem 0 3.5rem; color: #fff; position: relative; overflow: hidden; }
.page-banner::before { content: ''; position: absolute; top: -50%; right: -10%; width: 50%; height: 200%; background: radial-gradient(circle, rgba(245,158,11,.08), transparent 70%); }
.page-banner h1 { color: #fff; font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: .5rem; position: relative; }
.page-banner p { opacity: .8; max-width: 560px; position: relative; }
.breadcrumbs { display: flex; align-items: center; gap: .4rem; font-size: .825rem; color: rgba(255,255,255,.65); margin-bottom: .75rem; position: relative; }
.breadcrumbs a { color: var(--amber); font-weight: 500; }

/* Shop */
.shop-layout { display: grid; grid-template-columns: 240px 1fr; gap: 2rem; }
@media (max-width: 991px) { .shop-layout { grid-template-columns: 1fr; } }
.shop-sidebar { position: sticky; top: 100px; align-self: start; }
.shop-sidebar-box { background: var(--white); border-radius: var(--radius-lg); padding: 1.5rem; border: 1px solid var(--border); }
.shop-sidebar h4 { font-size: .95rem; margin-bottom: 1rem; padding-bottom: .65rem; border-bottom: 2px solid var(--amber); }
.cat-link { display: flex; align-items: center; justify-content: space-between; padding: .55rem 0; font-size: .875rem; color: var(--muted); border-bottom: 1px solid var(--border); cursor: pointer; transition: var(--ease); background: none; border-left: none; border-right: none; border-top: none; width: 100%; text-align: left; }
.cat-link:hover, .cat-link.active { color: var(--navy); font-weight: 600; }
.filter-pills { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; }
.filter-pill { border: 1px solid var(--border); background: var(--white); padding: .4rem 1rem; border-radius: 999px; font-size: .825rem; font-weight: 500; cursor: pointer; transition: var(--ease); color: var(--muted); }
.filter-pill.active, .filter-pill:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* Blog */
.blog-featured { display: grid; grid-template-columns: 1.2fr 1fr; gap: 1.5rem; margin-bottom: 2.5rem; }
@media (max-width: 767px) { .blog-featured { grid-template-columns: 1fr; } }
.blog-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); transition: var(--ease); height: 100%; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img { aspect-ratio: 16/10; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 1.35rem; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; gap: .85rem; font-size: .75rem; color: var(--muted); margin-bottom: .65rem; }
.blog-cat { color: var(--amber); font-weight: 700; }
.blog-card-body h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.blog-card-body p { font-size: .875rem; color: var(--muted); flex: 1; margin-bottom: 1rem; }
.blog-featured-main .blog-card-img { aspect-ratio: 16/11; }
.blog-featured-main h3 { font-size: 1.35rem; }

/* Contact */
.contact-split { display: grid; grid-template-columns: 1fr 1.2fr; gap: 2rem; }
@media (max-width: 991px) { .contact-split { grid-template-columns: 1fr; } }
.info-panel { background: var(--grad-navy); border-radius: var(--radius-lg); padding: 2.5rem; color: #fff; }
.info-panel h2 { color: #fff; font-size: 1.35rem; margin-bottom: 1.5rem; }
.info-row { display: flex; gap: 1rem; margin-bottom: 1.25rem; }
.info-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(245,158,11,.2); color: var(--amber); display: grid; place-items: center; flex-shrink: 0; }
.info-row strong { display: block; font-size: .875rem; }
.info-row span, .info-row a { font-size: .875rem; opacity: .8; color: rgba(255,255,255,.85); }
.info-row a:hover { color: var(--amber); }
.form-panel { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; border: 1px solid var(--border); }
.form-panel .form-label { font-weight: 600; font-size: .875rem; }
.form-panel .form-control, .form-panel .form-select { border-radius: 10px; border-color: var(--border); padding: .65rem 1rem; }
.form-panel .form-control:focus { border-color: var(--amber); box-shadow: 0 0 0 3px rgba(245,158,11,.15); }
.form-panel .form-control.is-invalid { border-color: #ef4444; }
.invalid-feedback { font-size: .8rem; color: #ef4444; margin-top: .25rem; display: none; }
.form-control.is-invalid + .invalid-feedback, .was-validated .form-control:invalid + .invalid-feedback { display: block; }
.map-box { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); aspect-ratio: 21/9; margin-top: 2rem; }
.map-box iframe { width: 100%; height: 100%; border: 0; }

/* Team */
.team-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); text-align: center; transition: var(--ease); }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.team-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.team-card-body { padding: 1.5rem; }
.team-card-body h3 { font-size: 1rem; margin-bottom: .2rem; }
.team-card-body .role { color: var(--amber); font-size: .8rem; font-weight: 600; margin-bottom: .65rem; }
.team-card-body p { font-size: .875rem; color: var(--muted); margin: 0; }

/* Policy */
.policy-doc { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; border: 1px solid var(--border); margin-bottom: 3rem; }
.policy-doc h2 { font-size: 1.15rem; color: var(--navy); margin: 1.75rem 0 .65rem; }
.policy-doc h2:first-child { margin-top: 0; }
.policy-doc p, .policy-doc li { font-size: .925rem; color: var(--muted); }
.policy-date { font-size: .85rem; padding-bottom: 1rem; margin-bottom: 1rem; border-bottom: 1px solid var(--border); color: var(--muted); }

/* Footer */
.footer-cta-band { background: var(--grad-navy); padding: 2.5rem 0; }
.footer-cta-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; }
.footer-cta-inner h3 { color: #fff; font-size: 1.35rem; margin-bottom: .25rem; }
.footer-cta-inner p { color: rgba(255,255,255,.75); margin: 0; font-size: .9rem; }
.footer-nl-form { display: flex; gap: .5rem; }
.footer-nl-form input { border: none; border-radius: 999px; padding: .65rem 1.15rem; min-width: 220px; font-size: .875rem; }
.footer-body { padding: 3.5rem 0 2rem; background: var(--navy); color: rgba(255,255,255,.75); }
.footer-brand { display: flex; align-items: center; gap: .6rem; font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; color: #fff; margin-bottom: 1rem; }
.footer-body p { font-size: .875rem; opacity: .75; max-width: 300px; margin-bottom: 1rem; }
.footer-body h6 { color: #fff; font-size: .9rem; margin-bottom: 1rem; }
.footer-body ul { list-style: none; padding: 0; }
.footer-body ul li { margin-bottom: .45rem; }
.footer-body ul a { font-size: .875rem; opacity: .7; color: rgba(255,255,255,.85); }
.footer-body ul a:hover { opacity: 1; color: var(--amber); }
.social-icons { display: flex; gap: .5rem; }
.social-icons a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; }
.social-icons a:hover { background: var(--amber); color: var(--navy); }
.payment-icons { display: flex; gap: .65rem; font-size: 1.35rem; opacity: .5; }
.footer-contact li { display: flex; align-items: flex-start; gap: .5rem; font-size: .825rem; margin-bottom: .5rem; }
.footer-contact i { color: var(--amber); margin-top: 2px; }
.footer-links a { color: rgba(255,255,255,.7); font-size: .875rem; }
.footer-links a:hover { color: var(--amber); }
.footer-base { background: #0a0f1a; padding: 1rem 0; font-size: .78rem; opacity: .6; color: rgba(255,255,255,.7); }

/* Scroll top + reveal */
.scroll-top { position: fixed; bottom: 24px; right: 24px; z-index: 900; width: 46px; height: 46px; border-radius: 50%; border: none; background: var(--navy); color: #fff; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(10px); transition: var(--ease); box-shadow: var(--shadow); }
.scroll-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--amber); color: var(--navy); }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 767px) {
    .section { padding: 3.5rem 0; }
    .hero-content { padding: 7rem 0 4rem; }
    .footer-nl-form { flex-direction: column; width: 100%; }
    .footer-nl-form input { min-width: auto; width: 100%; }
}
