/*
Theme Name: Default Theme
Theme URI: https://www.shopagg.com/
Author: ShopAGG
Author URI: https://www.shopagg.com/
Description: ShopAGG B2B 企业官网默认主题，包含完整的页面模板、区块配置和基础样式。
Version: 1.0.0
License: MIT
*/

/**
 * Default Theme - Custom Styles for Tailwind CSS
 */

/* ===== Base & Variables ===== */
:root {
  --brand-ink: #0f172a;
  --brand-muted: #475569;
  --brand-surface: #ffffff;
  --brand-border: #e2e8f0;
  --brand-accent: #0ea5e9;
  --site-navy: #07111f;
  --site-navy-soft: #0d1b2e;
  --site-text: #0f172a;
  --site-muted: #64748b;
  --site-radius: 1.5rem;
  --site-shadow: 0 22px 60px rgba(15, 23, 42, 0.1);
}

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

body {
  color: var(--site-text);
  background: #f8fafc;
}

body,
button,
input,
textarea,
select {
  font-family: Inter, "Source Sans 3", "Segoe UI", Arial, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Arial Narrow", "Roboto Condensed", Inter, "Segoe UI", Arial, sans-serif;
  letter-spacing: -0.025em;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: 999px;
  background: #fff;
  color: #0f172a;
  padding: 0.75rem 1rem;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.2);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

/* ===== Global Header ===== */
.site-header {
  width: 100%;
  /* border-bottom: 1px solid rgba(148, 163, 184, 0.14); */
  background: rgba(7, 17, 31, 0.96);
  box-shadow: 0 12px 34px rgba(2, 6, 23, 0.15);
  backdrop-filter: blur(18px);
  transition: background-color 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, backdrop-filter 0.28s ease;
}

.site-header--home:not(.is-scrolled):not(.is-menu-open) {
  border-bottom-color: transparent;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.38) 0%, transparent 100%);
  box-shadow: none;
  backdrop-filter: blur(0);
}

.site-header--home.is-scrolled,
.site-header--home.is-menu-open,
.site-header--solid {
  border-bottom-color: rgba(148, 163, 184, 0.14);
  background: rgba(7, 17, 31, 0.94);
  box-shadow: 0 12px 34px rgba(2, 6, 23, 0.16);
  backdrop-filter: blur(18px);
}

.site-brand__name {
  color: #fff;
}

.site-brand__tagline {
  color: #94a3b8;
}

.site-brand__logo {
  border-radius: 0.75rem;
  background: #fff;
  padding: 0.35rem 0.55rem;
}

.site-header__nav>a,
.site-header__nav>button,
.site-header__nav select,
.site-header__nav .google-translate-widget,
.site-header__nav .goog-te-gadget,
.site-header__nav .navbar-item .text-gray-700 {
  color: #cbd5e1 !important;
}

.site-header__nav>a:not(.site-header__cta) {
  border-radius: 999px;
  padding: 0.65rem 0.9rem;
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-header__nav>a:not(.site-header__cta):hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff !important;
}

.site-header__cta {
  background: var(--brand-accent);
  color: #fff;
  box-shadow: 0 12px 26px color-mix(in srgb, var(--brand-accent) 30%, transparent);
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.site-header__cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
  box-shadow: 0 16px 34px color-mix(in srgb, var(--brand-accent) 40%, transparent);
}

.site-menu-toggle {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.site-mobile-menu {
  margin-inline: -1rem;
  border-top: 1px solid rgba(148, 163, 184, 0.15);
  background: #07111f;
  padding-inline: 1rem;
  color: #e2e8f0;
}

.site-mobile-menu a:not(.site-header__cta) {
  color: #e2e8f0 !important;
}

/* ===== Home Page System ===== */
.home-section .container,
.site-footer .container,
.site-header .container {
  max-width: 1280px;
}

.section-kicker {
  margin-bottom: 0.8rem;
  color: var(--brand-accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-kicker--light {
  color: #7dd3fc;
}

.section-title {
  max-width: 18ch;
  line-height: 1.08;
}

.section-heading {
  position: relative;
  padding-bottom: 1.5rem;
}

.section-heading::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--brand-accent), rgba(148, 163, 184, 0.24) 22%, transparent 75%);
}

.section-link {
  border: 1px solid #dbe4ee;
  background: #fff;
  color: #0f172a;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.section-link:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--brand-accent) 45%, #dbe4ee);
  color: var(--brand-accent);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.section-link--solid {
  border-color: var(--brand-accent);
  background: var(--brand-accent);
  color: #fff;
}

.section-link--solid:hover {
  color: #fff;
  filter: brightness(1.06);
}

img,
video {
  max-width: 100%;
}

summary::-webkit-details-marker {
  display: none;
}

/* ===== Typography ===== */
.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== Hero Swiper ===== */
.hero-banner {
  min-height: 520px;
  height: clamp(620px, 48vw, 820px);
}

.hero-banner__grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 78%);
}

.hero-banner__overlay {
  background:
    /* linear-gradient(90deg, rgba(2, 8, 18, 0.96) 0%, rgba(7, 17, 31, 0.88) 42%, rgba(7, 17, 31, 0.34) 78%, rgba(7, 17, 31, 0.5) 100%), */
    linear-gradient(180deg, rgba(2, 6, 23, 0.6), transparent 40%),
    linear-gradient(90deg, rgba(2, 8, 18, 0.6) 0%, rgba(7, 17, 31, 0.4) 42%, rgba(7, 17, 31, 0.2) 78%, rgba(7, 17, 31, 0.2) 100%),
    linear-gradient(0deg, rgba(2, 6, 23, 0.1), transparent 40%);
}

.hero-banner__content {
  text-shadow: 0 2px 24px rgba(2, 6, 23, 0.3);
}

.hero-eyebrow__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 0 5px rgba(56, 189, 248, 0.12);
}

.hero-title {
  max-width: 20ch;
  text-wrap: balance;
}

.hero-btn {
  min-height: 3.25rem;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
}

.hero-btn--primary {
  background: var(--brand-accent);
  color: #fff;
  box-shadow: 0 18px 38px color-mix(in srgb, var(--brand-accent) 34%, transparent);
}

.hero-btn--primary:hover {
  filter: brightness(1.08);
}

.hero-btn--secondary {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(12px);
}

.hero-btn--secondary:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.14);
}

.hero-trust__icon {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.09);
  color: #7dd3fc;
}

.value-props__item,
.value-props__icon {
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.value-props__item:hover {
  background: #f8fafc;
}

.value-props__item:hover .value-props__icon {
  transform: translateY(-2px);
  background: var(--brand-accent);
  color: #fff;
}

.product-card,
.showcase-card,
.case-card,
.article-card,
.certificate-card,
.certificate-stat {
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.product-card:hover,
.showcase-card:hover,
.case-card:hover,
.article-card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--brand-accent) 28%, #e2e8f0);
  box-shadow: var(--site-shadow);
}

.product-card:hover .product-card__media img,
.showcase-card:hover figure img,
.case-card:hover img,
.article-card:hover img {
  transform: scale(1.045);
}

.product-card__link i {
  transition: transform 0.2s ease;
}

.product-card__link:hover {
  color: var(--brand-accent);
}

.product-card__link:hover i {
  transform: translateX(3px);
}

.home-section--authority {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 10%, color-mix(in srgb, var(--brand-accent) 8%, transparent), transparent 28%),
    linear-gradient(180deg, #f8fafc 0%, #eef4f8 100%);
}

.authority-check {
  display: inline-flex;
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  border-radius: 0.65rem;
  background: #dcfce7;
  color: #15803d;
}

.authority-media {
  position: relative;
  isolation: isolate;
}

.authority-media::before {
  position: absolute;
  inset: 1rem -1rem -1rem 1rem;
  z-index: -1;
  border-radius: 2rem;
  content: "";
  background: color-mix(in srgb, var(--brand-accent) 14%, #dbeafe);
}

.home-section--certificates {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 15%, color-mix(in srgb, var(--brand-accent) 25%, transparent), transparent 28%),
    #07111f;
}

.certificate-card:hover,
.certificate-stat:hover {
  transform: translateY(-4px);
  border-color: rgba(125, 211, 252, 0.36);
  background: rgba(255, 255, 255, 0.09);
}

.home-cta {
  background:
    radial-gradient(circle at 75% 10%, color-mix(in srgb, var(--brand-accent) 75%, transparent), transparent 30%),
    linear-gradient(135deg, #07111f 0%, #10243c 100%);
  box-shadow: 0 28px 70px rgba(2, 6, 23, 0.2);
}

.home-cta__glow {
  opacity: 0.28;
  background-image: radial-gradient(circle at 20% 100%, #fff 0 1px, transparent 1.5px);
  background-size: 24px 24px;
  mask-image: linear-gradient(90deg, #000, transparent 60%);
}

.home-cta__primary,
.home-cta__secondary {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.home-cta__primary:hover,
.home-cta__secondary:hover {
  transform: translateY(-2px);
}

.home-cta__secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(34, 197, 94, 0.9);
  box-shadow: 0 16px 34px rgba(34, 197, 94, 0.18);
}

/* ===== Footer ===== */
.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  background: #07111f;
  color: #cbd5e1;
}

.site-footer__eyebrow {
  margin-bottom: 0.75rem;
  color: #7dd3fc;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer__link {
  color: #94a3b8;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer__link:hover {
  color: #fff;
}

.site-footer__social {
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: #cbd5e1;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.site-footer__social:hover {
  transform: translateY(-2px);
  border-color: rgba(125, 211, 252, 0.55);
  background: rgba(255, 255, 255, 0.08);
  color: #7dd3fc;
}

.site-footer__bottom {
  border-color: rgba(148, 163, 184, 0.14);
}

.hero-banner .swiper,
.hero-banner .swiper-wrapper,
.hero-banner .swiper-slide {
  height: 100%;
}

.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
  background: rgba(255, 255, 255, 0.2);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  transition: background 0.2s;
}

.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
  background: rgba(255, 255, 255, 0.35);
}

.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after {
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
}

.hero-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.hero-swiper .swiper-pagination-bullet-active {
  background: #fff;
}

/* ===== Swiper Thumbs ===== */
.thumbs-swiper .swiper-slide {
  opacity: 0.6;
  transition: opacity 0.2s;
}

.thumbs-swiper .swiper-slide-thumb-active {
  opacity: 1;
  border-color: var(--brand-accent) !important;
}

/* ===== Product Detail ===== */
.product-gallery .swiper-button-next,
.product-gallery .swiper-button-prev {
  width: 2rem !important;
  height: 2rem !important;
  margin-top: -1rem !important;
  border: 1px solid rgba(226, 232, 240, 0.95) !important;
  border-radius: 0.5rem !important;
  background: rgba(255, 255, 255, 0.92) !important;
  color: #334155 !important;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08) !important;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, opacity 0.18s ease;
}

.product-gallery .swiper-button-next {
  right: 0.75rem !important;
}

.product-gallery .swiper-button-prev {
  left: 0.75rem !important;
}

.product-gallery .swiper-button-next:hover,
.product-gallery .swiper-button-prev:hover {
  border-color: color-mix(in srgb, var(--brand-accent) 35%, transparent) !important;
  background: #fff !important;
  color: var(--brand-accent) !important;
}

.product-gallery .swiper-button-next::after,
.product-gallery .swiper-button-prev::after {
  font-size: 0.75rem !important;
  font-weight: 800 !important;
  line-height: 1 !important;
}

.product-gallery .swiper-button-disabled {
  opacity: 0.35 !important;
}

.product-gallery__thumb {
  aspect-ratio: 1 / 1;
  border: 2px solid transparent;
  border-radius: 0.5rem;
  background: #f1f5f9;
  opacity: 0.68;
  transition: border-color 0.18s ease, opacity 0.18s ease;
}

.product-gallery__thumb:hover {
  border-color: color-mix(in srgb, var(--brand-accent) 35%, transparent);
  opacity: 1;
}

.product-gallery .thumbs-swiper .swiper-slide-thumb-active {
  border-color: var(--brand-accent) !important;
  opacity: 1;
}

.product-detail-info__card {
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}

@media (min-width: 1024px) {
  .product-detail-info {
    position: sticky;
    top: 6rem;
    align-self: flex-start;
  }

  .product-detail-info__card {
    max-height: calc(100vh - 7rem);
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
  }
}

@media (max-width: 639px) {

  .product-gallery .swiper-button-next,
  .product-gallery .swiper-button-prev {
    width: 1.75rem !important;
    height: 1.75rem !important;
    margin-top: -0.875rem !important;
  }

  .product-gallery .swiper-button-next {
    right: 0.5rem !important;
  }

  .product-gallery .swiper-button-prev {
    left: 0.5rem !important;
  }

  .product-gallery .swiper-button-next::after,
  .product-gallery .swiper-button-prev::after {
    font-size: 0.68rem !important;
  }
}

/* ===== Smooth Scroll ===== */
html {
  scroll-behavior: smooth;
}

/* ===== Focus States ===== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(14, 165, 233, 0.32);
  outline-offset: 2px;
}

/* ===== Mobile Menu Animation ===== */
#mobile-menu {
  transition: all 0.3s ease;
}

/* ===== Floating Contact ===== */
.site-float-contact {
  position: fixed;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  z-index: 45;
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
}

.site-float-contact__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f172a 0%, #0284c7 100%);
  color: #fff;
  padding: 0.9rem 1.1rem;
  font-weight: 700;
  box-shadow: 0 22px 40px rgba(2, 132, 199, 0.28);
}

.site-float-contact__panel {
  width: min(320px, calc(100vw - 2rem));
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  border-radius: 1.5rem;
  padding: 1rem;
  /* background:
    radial-gradient(circle at top right, rgba(125, 211, 252, 0.3), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(14px); */
}

.site-float-contact__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0284c7;
  margin-bottom: 0.45rem;
}

.site-float-contact__title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
}

.site-float-contact__desc {
  margin: 0.45rem 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #475569;
}

.site-float-contact__group {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 1rem;
}

.site-float-contact__item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.85rem 0.9rem;
  border-radius: 1rem;
  background: #ffffff;
  /* border: 1px solid rgba(226, 232, 240, 0.9); */
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.site-float-contact__item:hover {
  transform: translateY(-1px);
  border-color: rgba(14, 165, 233, 0.45);
  box-shadow: 0 16px 32px rgba(14, 165, 233, 0.12);
}

.site-float-contact__icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e0f2fe 0%, #f8fafc 100%);
  color: #0284c7;
  flex-shrink: 0;
  margin-left: 16px;
}

.site-float-contact__item--phone .site-float-contact__icon {
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
  color: #fff;
}

.site-float-contact__item--email .site-float-contact__icon {
  background: linear-gradient(135deg, #0284c7 0%, #38bdf8 100%);
  color: #fff;
}

.site-float-contact__item--whatsapp .site-float-contact__icon {
  background: #22c55e;
  color: #fff;
}

.site-float-contact__item--address .site-float-contact__icon {
  background: linear-gradient(135deg, #ea580c 0%, #fb923c 100%);
  color: #fff;
}

.site-float-contact__item--telegram .site-float-contact__icon {
  background: #229ed9;
  color: #fff;
}

.site-float-contact__item--line .site-float-contact__icon {
  background: #06c755;
  color: #fff;
}

.site-float-contact__item--vk .site-float-contact__icon {
  background: #0077ff;
  color: #fff;
}

.site-float-contact__meta {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.site-float-contact__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

.site-float-contact__value {
  color: #0f172a;
  font-size: 0.94rem;
  line-height: 1.45;
  word-break: break-word;
}

.site-float-contact__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.site-float-contact__social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 2.75rem;
  padding: 0.35rem;
  border-radius: 999px;
  background: #fff;
  color: #0f172a;
  border: 1px solid rgba(226, 232, 240, 0.95);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.site-float-contact__social-link:hover {
  transform: translateY(-1px);
  border-color: rgba(14, 165, 233, 0.45);
  color: #0284c7;
}

.site-float-contact__social-icon {
  width: 2.05rem;
  height: 2.05rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

.site-float-contact__social-text {
  font-size: 0.84rem;
  font-weight: 700;
  white-space: nowrap;
}

.site-float-contact__social-link {
  background-color: #ffffff;
}

.site-float-contact__social-link--facebook .site-float-contact__social-icon {
  background: linear-gradient(135deg, #1877f2 0%, #60a5fa 100%);
}

.site-float-contact__social-link--instagram .site-float-contact__social-icon {
  background: linear-gradient(135deg, #f97316 0%, #e4405f 55%, #8b5cf6 100%);
}

.site-float-contact__social-link--twitter .site-float-contact__social-icon {
  background: linear-gradient(135deg, #0f172a 0%, #1da1f2 100%);
}

.site-float-contact__social-link--linkedin .site-float-contact__social-icon {
  background: linear-gradient(135deg, #0a66c2 0%, #38bdf8 100%);
}

.site-float-contact__social-link--youtube .site-float-contact__social-icon {
  background: linear-gradient(135deg, #dc2626 0%, #ff0000 100%);
}

.site-float-contact__social-link--tiktok .site-float-contact__social-icon {
  background: #0f172a;
}

.site-float-contact__social-link--pinterest .site-float-contact__social-icon {
  background: #bd081c;
}

.site-float-contact__social-link--reddit .site-float-contact__social-icon {
  background: #ff4500;
}

.site-float-contact__social-link--telegram .site-float-contact__social-icon {
  background: #229ed9;
}

.site-float-contact__social-link--discord .site-float-contact__social-icon {
  background: #5865f2;
}

.site-float-contact__social-link--quora .site-float-contact__social-icon {
  background: #b92b27;
}

.site-float-contact__cta {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 999px;
  padding: 0.9rem 1rem;
  background: linear-gradient(135deg, #0284c7 0%, #0f172a 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 16px 32px rgba(2, 132, 199, 0.18);
}

@media (min-width: 1024px) {
  .site-float-contact {
    left: auto;
    right: 0;
    top: 80%;
    bottom: auto;
    transform: translateY(-50%);
    align-items: flex-start;
  }

  .site-float-contact__toggle {
    display: none;
  }

  .site-float-contact__panel {
    width: auto;
    max-width: none;
    max-height: none;
    overflow: visible;
    padding: 0.75rem 0.55rem;
    border-radius: 0 1.4rem 1.4rem 0;
    /* background:
      radial-gradient(circle at top right, rgba(56, 189, 248, 0.22), transparent 36%),
      linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.94));
    border-color: rgba(148, 163, 184, 0.18);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.28); */
  }

  .site-float-contact__eyebrow,
  .site-float-contact__title,
  .site-float-contact__desc,
  .site-float-contact__cta {
    display: none;
  }

  .site-float-contact__group {
    margin-top: 0;
    gap: 0.55rem;
  }

  .site-float-contact__item {
    flex-direction: row-reverse;
    justify-content: flex-start;
    gap: 0;
    width: 3.35rem;
    min-height: 3.35rem;
    padding: 0.38rem;
    border-radius: 999px;
    border-color: rgba(148, 163, 184, 0.16);
    box-shadow: none;
    overflow: hidden;
    white-space: nowrap;
  }

  .site-float-contact__item:hover {
    width: min(16rem, calc(100vw - 3rem));
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.18);
  }

  .site-float-contact__icon {
    width: 2.6rem;
    height: 2.6rem;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
  }

  .site-float-contact__item:hover .site-float-contact__icon {
    transform: scale(1.02);
  }

  .site-float-contact__meta {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-width 0.22s ease, opacity 0.18s ease;
  }

  .site-float-contact__item:hover .site-float-contact__meta {
    max-width: 11rem;
    opacity: 1;
  }

  .site-float-contact__label {
    color: #64748b;
  }

  .site-float-contact__value {
    max-width: 10.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .site-float-contact__social {
    margin-top: 0.55rem;
    flex-direction: column;
    gap: 0.55rem;
  }

  .site-float-contact__social-link {
    width: 3.15rem;
    min-height: 3.15rem;
    padding: 0.32rem;
    border-color: rgba(148, 163, 184, 0.14);
    overflow: hidden;
    box-shadow: none;
  }

  .site-float-contact__social-link:hover {
    width: min(13rem, calc(100vw - 3rem));
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.18);
  }

  .site-float-contact__social-icon {
    width: 2.5rem;
    height: 2.5rem;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
  }

  .site-float-contact__social-text {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    color: #0f172a;
    transition: max-width 0.22s ease, opacity 0.18s ease;
  }

  .site-float-contact__social-link:hover .site-float-contact__social-text {
    max-width: 7rem;
    opacity: 1;
  }
}

@media (max-width: 1023px) {
  .site-float-contact {
    right: 0.75rem;
    align-items: flex-end;
  }

  .site-float-contact__panel {
    position: absolute;
    right: 0;
    bottom: calc(100% + 0.75rem);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(0.75rem);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .site-float-contact__social-link {
    padding-right: 0.9rem;
  }

  .site-float-contact.is-open .site-float-contact__panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (max-width: 767px) {
  .hero-banner {
    min-height: 620px;
    height: min(720px, calc(100svh - 4rem));
  }

  .hero-banner__overlay {
    background:
      linear-gradient(180deg, rgba(2, 8, 18, 0.7) 0%, rgba(7, 17, 31, 0.88) 48%, rgba(2, 6, 23, 0.98) 100%);
  }

  .hero-banner__grid {
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, #000 0%, transparent 80%);
  }

  .hero-title {
    max-width: 15ch;
  }

  .hero-summary {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }

  .section-title {
    max-width: none;
  }

  .authority-media::before {
    inset: 0.75rem -0.5rem -0.75rem 0.5rem;
  }

  .hero-swiper .swiper-button-prev,
  .hero-swiper .swiper-button-next {
    display: none;
  }

  .site-float-contact__toggle {
    width: 3.25rem;
    height: 3.25rem;
    justify-content: center;
    padding: 0;
    box-shadow: 0 16px 32px rgba(2, 132, 199, 0.22);
  }

  .site-float-contact__toggle span {
    display: none;
  }

  .site-float-contact__panel {
    width: calc(100vw - 1.5rem);
    max-height: min(72vh, 32rem);
  }
}

@media (max-width: 639px) {
  .value-props__item {
    padding: 1.1rem;
  }

  .section-heading {
    padding-bottom: 1.25rem;
  }

  .site-footer {
    margin-top: 2rem;
  }
}

/* ===== Print Styles ===== */
@media print {

  nav,
  footer,
  .no-print,
  .site-float-contact {
    display: none !important;
  }

  body {
    background: white;
  }

  .container {
    max-width: 100%;
  }
}

/* ===== High Contrast Mode Support ===== */
@media (prefers-contrast: high) {
  .bg-gradient-to-r {
    background: #1e293b !important;
  }
}

/* ===== Reduced Motion Support ===== */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}