@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

:root {
  --primary: #0665ae;
  --primary-dark: #1e3a8a;
  --accent: #ffa03a;
  --accent-green: #059669;
  --whatsapp-green: #0a9b55;
  --text: #1a1a1a;
  --text-muted: #4a4a4a;
  --bg-light: #f8fafc;
  --white: #fff;
  --radius: 15px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-heading: 'Oswald', ui-sans-serif, system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
.section-title, .hero-title, .cta-title,
.contact-final-title,
.vr-form-wrap h3, .case-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: 0.03em;
}

.section-title {
  font-size: clamp(1.375rem, 1.8vw + 0.85rem, 2.125rem);
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

#bannerBox,
[id^="box"] {
  scroll-margin-top: 140px;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-block {
  margin: 20px;
  border-radius: var(--radius);
}

.hero-section + .section-block {
  margin-top: 10px;
}

/* ===== Header ===== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.main-header.scrolled {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.main-header.scrolled .header-content { padding: 8px 40px; }
.main-header.scrolled .logo2 img { height: 42px; }

.top-bar {
  background: var(--primary-dark);
  color: var(--white);
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.top-bar-content {
  max-width: 1600px;
  margin: 0 auto;
  padding: 8px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.contact-info2 { display: flex; gap: 20px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-size: 0.85rem;
  transition: color 0.25s ease;
}

.contact-item:hover { color: var(--accent); }

.contact-icon img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
  transition: filter 0.25s ease;
}

.contact-item:hover .contact-icon img {
  filter: brightness(0) saturate(100%) invert(72%) sepia(68%) saturate(1200%) hue-rotate(347deg) brightness(105%) contrast(101%);
}

.header-content {
  max-width: 1600px;
  margin: 0 auto;
  padding: 12px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: padding 0.3s ease;
}

.logo2 img {
  height: 56px;
  width: auto;
  transition: height 0.3s ease;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 4px;
}

.nav-link {
  position: relative;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
  border-radius: 6px;
  transition: color 0.28s ease, background 0.28s ease;
}

.nav-link:hover {
  color: var(--primary-dark);
  background: rgba(6, 101, 174, 0.06);
}

.nav-link.is-active {
  color: var(--primary-dark);
  font-weight: 600;
  background: rgba(6, 101, 174, 0.08);
}

.cta-button2,
.cta-btn,
.quote-btn,
.submit-button,
.model-tab {
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
}

.cta-button2 {
  background: var(--primary);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.cta-button2:hover { background: var(--accent); transform: translateY(-1px); }

.mobile-header { display: none; }

.mobile-bottom-bar { display: none; }

/* ===== Hero ===== */
.page-main { padding-top: 130px; }

.hero-section {
  position: relative;
  margin: 5px 20px 10px;
  border-radius: 20px;
  overflow: hidden;
  height: 680px;
}

.hero-img {
  width: 100%;
  height: 100%;
  line-height: 0;
}

.hero-img img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 15px;
  object-fit: cover;
  object-position: center 42%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(30, 58, 138, 0.82) 0%, rgba(30, 58, 138, 0.4) 50%, rgba(30, 58, 138, 0.08) 100%);
  border-radius: 15px;
  pointer-events: none;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
  color: var(--white);
  padding: 40px 48px;
  max-width: 760px;
}

.hero-title {
  font-size: clamp(1.625rem, 2.2vw + 0.9rem, 2.5rem);
  line-height: 1.15;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  color: var(--white);
}

.hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: 10px;
  opacity: 0.95;
}

.hero-checklist {
  list-style: none;
  margin: 16px 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
}

.hero-checklist li {
  font-size: 0.92rem;
  padding-left: 22px;
  position: relative;
}

.hero-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: 700;
}

.cta-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.cta-btn {
  padding: 14px 28px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cta-btn-icon {
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  object-fit: contain;
}

.cta-btn-primary .cta-btn-icon {
  filter: brightness(0) invert(1);
}

.cta-btn-secondary .cta-btn-icon {
  filter: brightness(0);
}

.cta-btn-primary:hover .cta-btn-icon,
.cta-btn-secondary:hover .cta-btn-icon {
  filter: brightness(0) invert(1);
}

.cta-btn-primary {
  background: #3b82f6;
  color: var(--white);
}

.cta-btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.cta-btn-secondary {
  background: var(--white);
  color: #111;
  border-color: #111;
}

.cta-btn-secondary:hover {
  background: var(--whatsapp-green);
  color: var(--white);
  border-color: var(--whatsapp-green);
  transform: translateY(-2px);
}

/* ===== Screen 2: Brands & Models ===== */
.brands-section {
  background: var(--bg-light);
  padding: 25px 0;
}

.brands-section.section-block {
  margin-bottom: 10px;
}

.brands-section.section-block + .section-block {
  margin-top: 10px;
}

.brands-section .section-title {
  text-align: center;
  margin-bottom: 15px;
  color: var(--text);
}

.brand-logos {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.brand-logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  min-width: 0;
  height: 34px;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.brand-logo img {
  height: 28px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.brand-logo-cur {
  position: absolute;
  opacity: 0;
  transform: scale(0.92);
}

.brand-logo:hover {
  transform: translateY(-4px) scale(1.06);
}

.brand-logo:hover .brand-logo-mo {
  opacity: 0;
  transform: scale(0.9);
}

.brand-logo:hover .brand-logo-cur {
  opacity: 1;
  transform: scale(1);
}

.model-tabs {
  display: flex;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 12px;
  padding: 5px;
  background: #e3edf7;
  border-radius: 9999px;
  box-shadow: 0 2px 12px rgba(6, 101, 174, 0.1);
  border-bottom: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
}

.model-tab {
  padding: 10px 26px;
  background: transparent;
  border: 2px solid transparent;
  border-radius: 9999px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-dark);
  cursor: pointer;
  margin-bottom: 0;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.model-tab.active {
  background: var(--white);
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 1px 6px rgba(6, 101, 174, 0.15);
}

.model-tab:hover:not(.active) { color: var(--primary); }

.model-panel { display: none; padding-top: 8px; width: 100%; }
.model-panel.active { display: block; animation: panelFadeIn 0.35s ease; }

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

.model-table-wrap {
  overflow-x: auto;
  border-radius: 14px;
  box-shadow: 0 6px 28px rgba(6, 101, 174, 0.1);
  border: 1px solid #dce8f4;
  background: var(--white);
}

.model-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  font-size: 0.9rem;
}

.model-table th {
  background: linear-gradient(135deg, var(--primary) 0%, #0a4d8c 100%);
  color: var(--white);
  padding: 16px 22px;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.model-table th:first-child { border-radius: 13px 0 0 0; width: 130px; }
.model-table th:nth-child(2) { width: 180px; }
.model-table th:last-child { border-radius: 0 13px 0 0; }

.model-table td {
  padding: 16px 22px;
  border-bottom: 1px solid #edf2f7;
  vertical-align: middle;
  line-height: 1.5;
}

.model-table tbody tr:last-child td {
  border-bottom: none;
}

.model-table tbody tr:last-child td:first-child { border-radius: 0 0 0 13px; }
.model-table tbody tr:last-child td:last-child { border-radius: 0 0 13px 0; }

.model-table td:first-child {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.model-table td:nth-child(2) {
  font-weight: 600;
  color: var(--primary-dark);
  font-size: 0.88rem;
}

.model-table td:last-child {
  color: #475569;
}

.model-table tr:nth-child(even) td { background: #f8fbfe; }
.model-table tbody tr {
  transition: background 0.2s ease;
}
.model-table tbody tr:hover td {
  background: #eef5fc;
}

.model-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.model-tag {
  display: inline-block;
  padding: 5px 11px;
  background: #f1f7fd;
  border: 1px solid #d6e6f5;
  border-radius: 6px;
  font-size: 0.8rem;
  color: #334155;
  line-height: 1.3;
  transition: all 0.2s ease;
}

.model-tag:hover {
  background: #e3f2fd;
  border-color: var(--primary);
  color: var(--primary);
}

.model-rows-read-more {
  display: none;
}

.disclaimer {
  font-style: italic;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
  padding: 0;
  font-size: 0.84rem;
  line-height: 1.7;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;
}

/* ===== Screen 3: Products ===== */
.products-section {
  padding: 50px 0;
  background: var(--white);
}

.products-section .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--bg-light);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 16px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.14);
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(6, 101, 174, 0.28);
}

.product-image {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  cursor: pointer;
}

.product-image img { width: 100%; height: 100%; object-fit: cover; }

.product-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--primary);
  margin: 12px 0;
}

.quote-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.quote-btn:hover { background: var(--accent); }

/* ===== Screen 4: About + 6 Icons ===== */
.about-section {
  background: linear-gradient(160deg, #1e3a8a 0%, #0f2d6b 50%, #1a3278 100%);
  color: var(--white);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(6, 101, 174, 0.2) 0%, transparent 45%);
  pointer-events: none;
}

.about-section .container { position: relative; z-index: 1; }

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 0;
}

.about-image img {
  border-radius: 14px;
  width: 100%;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.about-image.about-video {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
  background: #0a1628;
}

.about-video-poster {
  position: relative;
  aspect-ratio: 16 / 9;
  cursor: pointer;
}

.about-video-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.45s ease;
}

.about-video-poster::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 22, 40, 0.08) 0%, rgba(10, 22, 40, 0.55) 100%);
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.about-video-poster:hover img {
  transform: scale(1.03);
}

.about-video-poster:hover::after {
  opacity: 0.85;
}

.video-ico {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: var(--primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.video-ico-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 160, 58, 0.75);
  animation: video-ico-pulse 2s ease-out infinite;
  pointer-events: none;
}

.video-ico svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
  margin-left: 3px;
}

.video-ico:hover,
.video-ico:focus-visible {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 12px 36px rgba(255, 160, 58, 0.45);
  outline: none;
}

.video-box {
  display: none;
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.video-box iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.about-video.is-playing .about-video-poster {
  display: none;
}

.about-video.is-playing .video-box {
  display: block;
}

@keyframes video-ico-pulse {
  0% {
    transform: scale(0.92);
    opacity: 0.9;
  }
  70% {
    transform: scale(1.18);
    opacity: 0;
  }
  100% {
    transform: scale(1.18);
    opacity: 0;
  }
}

.about-text h2 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 16px;
}

.about-text p { opacity: 0.92; line-height: 1.8; margin-bottom: 24px; }

.features-section {
  background: var(--white);
  padding: 0;
}

.features-section.section-block {
  margin-left: 20px;
  margin-right: 20px;
  border-radius: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  width: 100%;
  background: var(--white);
}

.feature-box {
  position: relative;
  background: #f3f5f8;
  border-radius: 0;
  padding: 40px 28px;
  text-align: center;
  border: none;
  box-shadow: none;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
}

.feature-box::before { display: none; }

.feature-box:hover {
  transform: none;
  box-shadow: none;
  background: #e8eef5;
}

.feature-icon-wrap {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: transparent;
  border-radius: 0;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: none;
}

.feature-box:hover .feature-icon-wrap {
  transform: none;
  background: transparent;
}

.feature-icon-wrap img {
  width: 44px;
  height: 44px;
  margin: 0;
}

.feature-box h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 12px;
}

.feature-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  max-width: 320px;
}

/* ===== Screen 5: Case Studies ===== */
.cases-section {
  background: var(--bg-light);
  padding: 60px 0;
}

.cases-section .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.cases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.case-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.case-card-media {
  position: relative;
  overflow: hidden;
}

.case-card-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.case-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 101, 174, 0.55);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.case-card:hover .case-card-overlay { opacity: 1; }
.case-card:hover .case-card-media img { transform: scale(1.04); }

.case-quote-btn {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.25s ease;
}

.case-card:hover .case-quote-btn {
  opacity: 1;
  transform: translateY(0);
}

.case-quote-btn:hover { background: var(--primary); }

.case-card-body { padding: 24px; }

.case-card h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.case-card p { color: var(--text-muted); font-size: 0.95rem; }

/* ===== Screen 6: VR + Form ===== */
.vr-section {
  padding: 60px 0;
}

.vr-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}

.vr-section .section-title {
  margin-bottom: 10px;
}

.vr-desc {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #64748b;
}

.vr-layout {
  display: grid;
  grid-template-columns: 38% 58%;
  gap: 4%;
  align-items: stretch;
}

.vr-form-wrap {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 32px;
  height: 100%;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.14);
}

.vr-col {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  min-width: 0;
}

.vr-form-wrap h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--text);
}

.form-group { margin-bottom: 14px; }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--primary); }

.file-upload label {
  display: flex;
  justify-content: space-between;
  padding: 12px 14px;
  border: 1px dashed #ccc;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
}

.file-input { display: none; }

.submit-button {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-button:not(.submit-button--overlay):hover { background: var(--accent); }

.vr-viewer {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: #111;
  min-height: 360px;
}

.vr-viewer iframe,
.vr-viewer:not(.vr-wp-content) > div {
  width: 100%;
  min-height: 360px;
  height: auto;
  border: 0;
  display: block;
}

.vr-viewer.vr-wp-content {
  width: 100%;
  align-self: stretch;
  background: #111;
  min-height: 480px;
}

#vrEmbed.vr-wp-content > div,
#vrEmbed.vr-wp-content [id^="wpvr"],
#vrEmbed.vr-wp-content [id^="pano"],
#vrEmbed.vr-wp-content .panorama,
#vrEmbed.vr-wp-content .pnlm-container,
#vrEmbed.vr-wp-content .pnlm-render-container,
#vrEmbed.vr-wp-content .render-location,
#vrEmbed.vr-wp-content .wpvr-virtual-tour-wrapper,
#vrEmbed.vr-wp-content .wpvr-virtual-tour-block-wrap,
#vrEmbed.vr-wp-content iframe {
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  box-sizing: border-box;
}

#vrEmbed.vr-wp-content canvas {
  width: 100% !important;
}

@media (max-width: 768px) {
  .vr-viewer.vr-wp-content {
    min-height: 320px;
  }
}

/* ===== Screen 7: Technology & Quality ===== */
.tech-section {
  background: #fafafa;
  padding: 56px 0;
}

.tech-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 28px;
}

.tech-section .section-title {
  margin-bottom: 10px;
}

.tech-desc {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #64748b;
}

.tech-panel {
  display: grid;
  grid-template-columns: 1fr 1px 320px;
  align-items: stretch;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(15, 23, 42, 0.06);
}

.tech-divider {
  background: #e5e7eb;
}

/* Process timeline */
.process-timeline {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  min-height: 100%;
}

.process-timeline-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 4px 0 0;
  line-height: 1.3;
  min-height: 2.1em;
  padding: 0 1px;
  letter-spacing: 0.01em;
}

.process-track-row {
  position: relative;
  height: 14px;
  margin: 0;
}

.process-track-line {
  position: absolute;
  left: 8.5%;
  right: 8.5%;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, #3b82c4 100%);
  border-radius: 1px;
}

.process-markers {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  height: 100%;
  align-items: center;
}

.step-marker {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--primary);
  justify-self: center;
  flex-shrink: 0;
}

.process-photos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}

.step-photo {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid #eef2f6;
  background: #f8fafc;
}

.step-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Shared 3-up focus carousel */
.focus-carousel {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.focus-carousel-item {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50%;
  transform: translate(calc(-50% + var(--fc-off-offset, 160px)), -50%) scale(0.68);
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.55s ease, width 0.55s ease, box-shadow 0.55s ease;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  will-change: transform, opacity;
}

.focus-carousel-item.is-left {
  opacity: 0.82;
  z-index: 5;
  width: 44%;
  transform: translate(calc(-50% - var(--fc-offset, 108px)), -50%) scale(0.76);
}

.focus-carousel-item.is-center {
  opacity: 1;
  z-index: 10;
  width: 56%;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

.focus-carousel-item.is-right {
  opacity: 0.82;
  z-index: 5;
  width: 44%;
  transform: translate(calc(-50% + var(--fc-offset, 108px)), -50%) scale(0.76);
}

.focus-carousel-item.is-off {
  opacity: 0;
  z-index: 0;
  width: 44%;
  pointer-events: none;
}

.focus-carousel-item.is-off-left {
  transform: translate(calc(-50% - var(--fc-off-offset, 160px)), -50%) scale(0.68);
}

.focus-carousel-item.is-off-right {
  transform: translate(calc(-50% + var(--fc-off-offset, 160px)), -50%) scale(0.68);
}

/* Certificate carousel — 3 visible, center focus */
.cert-stack-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 14px 12px;
  background: #f8fafc;
}

.cert-stack-heading {
  margin: 4px 0 8px;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}

.cert-stack {
  --fc-offset: 88px;
  --fc-off-offset: 128px;
  width: 100%;
  max-width: 280px;
  height: 268px;
}

.cert-stack-card {
  padding: 6px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #eef2f6;
}

.cert-stack-card img {
  width: 100%;
  border-radius: 4px;
  display: block;
}

.cert-stack-card.is-left,
.cert-stack-card.is-right {
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}

.cert-stack-card.is-center {
  box-shadow: 0 12px 32px rgba(6, 101, 174, 0.15);
  border-color: rgba(6, 101, 174, 0.12);
}

.cert-stack-title {
  margin-top: 8px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  text-align: center;
  min-height: 2em;
  line-height: 1.35;
  padding: 0 8px;
  transition: opacity 0.3s ease;
}

/* ===== Screen 8: Testimonials ===== */
.testimonials-section {
  padding: 80px 0;
  background: #fafafa;
}

.testimonials-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Left — iPhone */
.testimonials-viewer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.iphone-mockup {
  width: 100%;
  max-width: 260px;
}

.iphone-shell {
  background: #1d1d1f;
  border-radius: 44px;
  padding: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.iphone-screen {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  background: #ece5dd;
  aspect-ratio: 9 / 19.5;
}

.iphone-island {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 20px;
  background: #1d1d1f;
  border-radius: 14px;
  z-index: 2;
}

.iphone-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  transition: opacity 0.3s ease;
}

.iphone-screen img.is-fading {
  opacity: 0;
}

.testimonial-meta {
  margin: 20px 0 0;
  font-size: 0.875rem;
  color: #64748b;
  text-align: center;
}

.testimonial-meta #testimonialRole {
  color: #334155;
  font-weight: 500;
}

.testimonial-meta-sep {
  margin: 0 2px;
}

.testimonial-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  justify-content: center;
}

.testimonial-thumb {
  flex: 0 0 34px;
  width: 34px;
  height: 44px;
  padding: 0;
  border: 2px solid #111;
  border-radius: 5px;
  background: none;
  cursor: pointer;
  overflow: hidden;
  opacity: 0.45;
  box-sizing: border-box;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.14);
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.testimonial-thumb:hover {
  opacity: 0.75;
  border-color: rgba(6, 101, 174, 0.45);
  box-shadow: 0 4px 14px rgba(6, 101, 174, 0.22);
}

.testimonial-thumb.is-active {
  opacity: 1;
  transform: scale(1.1);
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(6, 101, 174, 0.18), 0 6px 18px rgba(6, 101, 174, 0.35);
}

.testimonial-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 5px;
}

/* Right — copy */
.testimonials-intro .section-title {
  text-align: left;
  margin-bottom: 16px;
}

.testimonials-desc {
  color: #64748b;
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0 0 28px;
  max-width: 440px;
}

.testimonials-points {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
}

.testimonials-points li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.5;
}

.testimonials-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
}

.testimonials-trust {
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 28px;
  border-top: 1px solid #e5e7eb;
}

.trust-stat {
  flex: 1;
  text-align: left;
}

.trust-stat + .trust-stat {
  padding-left: 28px;
  border-left: 1px solid #e5e7eb;
}

.trust-stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: #111;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
  transition: opacity 0.3s ease;
}

.trust-stat-num.is-counting {
  opacity: 0.92;
}

.trust-stat-label {
  display: block;
  margin-top: 4px;
  font-size: 0.8rem;
  color: #94a3b8;
}

/* ===== Screen 9: FAQ ===== */
.faq-section {
  padding: 80px 0;
  background: #fafafa;
}

.faq-header {
  text-align: center;
  margin: 0 auto 48px;
}

.faq-section .section-title {
  margin-bottom: 12px;
}

.faq-desc {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #64748b;
  white-space: nowrap;
}

.faq-list {
  counter-reset: faq;
  width: 100%;
  margin: 0 auto;
  padding: 16px 56px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
}

.faq-item {
  counter-increment: faq;
  border-bottom: 1px solid #e5e7eb;
  transition: background 0.2s;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item.open {
  background: linear-gradient(90deg, rgba(6, 101, 174, 0.04) 0%, transparent 100%);
}

.faq-question {
  width: 100%;
  padding: 24px 12px 24px 8px;
  background: none;
  border: none;
  text-align: left;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  color: #111;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: color 0.2s;
}

.faq-question::before {
  content: counter(faq, decimal-leading-zero);
  flex-shrink: 0;
  width: 32px;
  margin-right: 4px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: #d1d5db;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--primary-dark);
}

.faq-question:hover::before {
  color: #94a3b8;
}

.faq-question span {
  flex: 1;
  line-height: 1.45;
}

.faq-question::after {
  content: '';
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: #f1f5f9 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M2 3.5L5 6.5L8 3.5' stroke='%2394a3b8' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 10px no-repeat;
  transition: background-color 0.2s, transform 0.25s ease;
}

.faq-item.open .faq-question {
  color: var(--primary-dark);
}

.faq-item.open .faq-question::before {
  color: var(--primary);
}

.faq-item.open .faq-question::after {
  background-color: rgba(6, 101, 174, 0.08);
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
  min-height: 0;
}

.faq-answer-inner p {
  margin: 0;
  padding: 0 12px 24px 44px;
  font-size: 0.98rem;
  line-height: 1.75;
  color: #64748b;
}

.faq-read-more {
  display: none;
}

/* ===== Screen 10: CTA ===== */
.cta-section {
  background: var(--primary-dark);
  color: var(--white);
  padding: 60px 20px;
  margin: 20px;
  border-radius: var(--radius);
  text-align: center;
}

.cta-title {
  font-size: clamp(1.375rem, 1.8vw + 0.85rem, 2.125rem);
  margin-bottom: 10px;
  color: var(--white);
}

.cta-subtitle {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 28px;
}

.cta-section .cta-buttons { justify-content: center; }

/* ===== Screen 11: Contact ===== */
.contact-final {
  position: relative;
  padding: 72px 0 40px;
  overflow: hidden;
}

.contact-final-bg {
  position: absolute;
  inset: 0;
  background: url('../assets/bot-bg.webp') center center / cover no-repeat;
}

.contact-final-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 28, 58, 0.82) 0%, rgba(4, 18, 38, 0.88) 100%);
}

.contact-final-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
}

.contact-final-header {
  margin: 0 auto 36px;
  text-align: center;
}

.contact-final-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 20px;
  align-items: stretch;
}

/* Left panel — unified dashed container */
.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
  padding: 16px;
  border: 1.5px dashed rgba(255, 255, 255, 0.42);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.contact-tip-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: #fff;
  border-radius: 8px;
}

.contact-tip-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
}

.contact-tip-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #334155;
}

.contact-highlight {
  color: var(--accent);
  font-weight: 700;
}

.contact-guide-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.contact-guide-title {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  letter-spacing: 0.02em;
}

.contact-guide-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-guide-item {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 168px;
  align-items: center;
  gap: 8px 8px;
  padding: 10px 6px 10px 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-guide-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  margin-top: 2px;
}

.contact-guide-text h4 {
  margin: 0 0 3px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}

.contact-guide-text p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}

.contact-guide-img {
  width: 168px;
  height: 112px;
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
}

.contact-guide-foot {
  margin: 10px 0 0;
  font-size: 0.76rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

/* Right form panel */
.contact-form--overlay {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
  padding: 28px 32px 30px;
  background: rgba(6, 22, 44, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.35), 0 16px 40px rgba(0, 0, 0, 0.22);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
}

.contact-final-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.2;
  margin-bottom: 8px;
}

.contact-final-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 992px) {
  .contact-final-title,
  .contact-final-subtitle {
    white-space: nowrap;
  }
}

.contact-form--overlay .form-group {
  margin-bottom: 12px;
}

.contact-form--overlay .form-group label {
  display: block;
  margin-bottom: 4px;
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
}

.contact-form--overlay .req {
  color: #f87171;
}

.contact-form--overlay input,
.contact-form--overlay textarea {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.9rem;
  font-family: inherit;
  color: #1e293b;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form--overlay input:focus,
.contact-form--overlay textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 160, 58, 0.2);
}

.contact-form--overlay textarea {
  resize: vertical;
  min-height: 88px;
}

.file-upload--overlay {
  margin-bottom: 0;
  margin-top: 2px;
}

.file-upload--overlay label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px dashed rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.82);
  transition: background 0.2s, border-color 0.2s;
}

.file-upload--overlay label:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.file-upload--overlay .file-selected {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
}

.submit-button--overlay {
  display: block;
  width: 100%;
  max-width: 240px;
  margin: auto auto 0;
  padding: 13px 40px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 16px rgba(255, 160, 58, 0.35);
}

.submit-button--overlay:hover {
  background-color: var(--whatsapp-green);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 155, 85, 0.45);
}

/* ===== Modal ===== */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.contact-modal.open { display: flex; }

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.modal-content {
  position: relative;
  background: var(--white);
  border-radius: 12px;
  padding: 36px;
  width: 90%;
  max-width: 480px;
  z-index: 1;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #999;
}

.modal-content h3 { margin-bottom: 20px; font-size: 1.3rem; }

/* ===== Footer ===== */
.site-footer {
  background: #e9e9e9;
  padding: 24px 0 28px;
  text-align: center;
  font-size: 0.85rem;
  color: #666;
}

.site-footer p {
  margin: 0;
}

.site-footer-privacy {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 10px 28px;
  background: #111;
  border-radius: 999px;
  font-size: 0.82rem;
  line-height: 1.2;
}

.site-footer-privacy a {
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

.site-footer-privacy a:hover {
  text-decoration: underline;
}

.site-footer-privacy-sep {
  color: rgba(255, 255, 255, 0.45);
  user-select: none;
}

.floating-quick-contact {
  position: fixed;
  right: 0;
  top: 70%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-quick-item {
  position: relative;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.floating-quick-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  padding: 10px 8px;
  background: var(--primary);
  color: #fff;
  border-radius: 10px 0 0 10px;
  box-shadow: -3px 4px 14px rgba(0, 0, 0, 0.18);
  transition: background 0.25s, box-shadow 0.25s;
}

.floating-quick-tab img {
  width: 34px;
  height: 34px;
  display: block;
}

.floating-quick-item--whatsapp .floating-quick-tab {
  background: #25d366;
}

.floating-quick-item--whatsapp .floating-quick-tab img {
  width: 34px;
  height: 34px;
}

.floating-quick-item:hover .floating-quick-tab,
.floating-quick-item.is-open .floating-quick-tab {
  animation: quick-contact-wiggle 0.45s ease-in-out infinite;
}

.floating-quick-item--email:hover .floating-quick-tab,
.floating-quick-item--email.is-open .floating-quick-tab {
  background: var(--accent);
  box-shadow: -4px 6px 18px rgba(255, 160, 58, 0.35);
}

.floating-quick-item--whatsapp:hover .floating-quick-tab,
.floating-quick-item--whatsapp.is-open .floating-quick-tab {
  box-shadow: -4px 6px 18px rgba(37, 211, 102, 0.4);
}

.floating-quick-bubble {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  width: 240px;
  padding: 14px 16px;
  background: #fff;
  color: #334155;
  font-size: 0.84rem;
  line-height: 1.55;
  border-radius: 10px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.floating-quick-bubble::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #fff;
  box-shadow: 2px -2px 4px rgba(0, 0, 0, 0.06);
}

.floating-quick-item:hover .floating-quick-bubble,
.floating-quick-item.is-open .floating-quick-bubble {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

@keyframes quick-contact-wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-10deg); }
  75% { transform: rotate(10deg); }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-process-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-final-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .tech-panel {
    grid-template-columns: 1fr;
  }

  .tech-divider {
    height: 1px;
    width: 100%;
  }

  .process-steps,
  .process-markers,
  .process-photos { grid-template-columns: repeat(3, 1fr); row-gap: 8px; }

  .process-track-row { display: none; }

  .cert-stack { height: 260px; max-width: 100%; }

  .testimonials-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .testimonials-intro .section-title,
  .testimonials-desc {
    text-align: center;
    max-width: none;
  }

  .testimonials-points {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .testimonials-trust {
    justify-content: center;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .main-header { display: none; }

  .mobile-header {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease;
  }

  .mobile-header.scrolled {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  }

  .mobile-top-bar {
    background: var(--primary);
    padding: 7px 14px;
    font-size: 0.72rem;
  }

  .mobile-contact {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 18px;
  }

  .mobile-contact-item {
    color: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    white-space: nowrap;
    transition: color 0.25s ease;
  }

  .mobile-contact-item:hover { color: var(--accent); }

  .mobile-contact-item img {
    width: 13px;
    filter: brightness(0) invert(1);
    transition: filter 0.25s ease;
  }

  .mobile-contact-item:hover img {
    filter: brightness(0) saturate(100%) invert(72%) sepia(68%) saturate(1200%) hue-rotate(347deg) brightness(105%) contrast(101%);
  }

  .mobile-nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
  }

  .mobile-nav-bar .logo2 img { height: 38px; }

  .hamburger {
    background: rgba(6, 101, 174, 0.08);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    padding: 0;
  }

  .hamburger-line {
    width: 20px;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
    transition: all 0.3s;
  }

  .mobile-menu {
    display: none;
    background: var(--white);
    border-top: 1px solid #eee;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-menu.open { display: block; }

  .mobile-nav-list { list-style: none; }
  .mobile-nav-link {
    display: block;
    padding: 14px 20px;
    color: var(--primary);
    font-weight: 500;
    font-size: 0.92rem;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.25s ease, background 0.25s ease;
  }

  .mobile-nav-link:hover,
  .mobile-nav-link.is-active {
    color: var(--primary-dark);
    background: rgba(6, 101, 174, 0.06);
  }

  .mobile-nav-link.is-active {
    font-weight: 600;
    border-left: 3px solid var(--primary);
    padding-left: 17px;
  }

  /* Bottom quick nav */
  .mobile-bottom-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    height: 54px;
    padding-bottom: env(safe-area-inset-bottom, 0);
    background: var(--primary);
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
  }

  .mobile-bottom-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    min-width: 0;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
    transition: background 0.2s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-bottom-item:last-child { border-right: none; }

  .mobile-bottom-item svg {
    width: 21px;
    height: 21px;
    flex-shrink: 0;
  }

  .mobile-bottom-item span {
    line-height: 1;
    white-space: nowrap;
  }

  .mobile-bottom-item:active,
  .mobile-bottom-item.is-active {
    background: rgba(0, 0, 0, 0.14);
  }

  .floating-quick-contact { display: none; }

  body {
    padding-bottom: calc(54px + env(safe-area-inset-bottom, 0));
  }

  .site-footer {
    padding-bottom: calc(16px + env(safe-area-inset-bottom, 0));
  }

  #bannerBox,
  [id^="box"] {
    scroll-margin-top: 88px;
  }

  .page-main {
    padding-top: 92px;
  }

  .container {
    padding: 0 14px;
  }

  .section-title {
    font-size: 1.18rem;
    line-height: 1.28;
    margin-bottom: 22px;
  }

  .section-block {
    margin: 10px;
    border-radius: 12px;
  }

  .hero-section + .section-block {
    margin-top: 5px;
  }

  .brands-section,
  .products-section,
  .about-section,
  .cases-section,
  .vr-section,
  .tech-section,
  .testimonials-section,
  .faq-section {
    padding: 36px 0;
  }

  .faq-desc {
    white-space: normal;
  }

  .faq-list {
    padding: 8px 14px;
  }

  .faq-list.has-more:not(.is-expanded) .faq-item-extra {
    display: none;
  }

  .faq-read-more {
    display: block;
    width: calc(100% - 28px);
    margin: 12px auto 0;
    padding: 12px 16px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background 0.25s;
  }

  .faq-read-more:hover {
    background: var(--accent);
  }

  .faq-question {
    padding: 16px 4px 16px 0;
    font-size: 0.84rem;
    line-height: 1.4;
  }

  .faq-answer-inner p {
    padding: 0 4px 16px 32px;
    font-size: 0.8rem;
    line-height: 1.6;
  }

  .brands-section {
    padding: 18px 0;
  }

  .brands-section.section-block {
    margin-bottom: 5px;
  }

  .brands-section.section-block + .section-block {
    margin-top: 5px;
  }

  .brands-section .section-title {
    margin-bottom: 11px;
  }

  .hero-section {
    margin: 4px 10px 6px;
    height: auto;
    min-height: 360px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero-img {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .hero-overlay {
    z-index: 1;
    background: linear-gradient(105deg, rgba(30, 58, 138, 0.93) 0%, rgba(30, 58, 138, 0.78) 52%, rgba(30, 58, 138, 0.12) 100%);
  }

  .hero-content {
    position: relative;
    top: auto;
    transform: none;
    padding: 20px 18px 18px;
    max-width: 78%;
    z-index: 2;
  }

  .hero-title {
    font-size: 1.05rem;
    line-height: 1.28;
    letter-spacing: 0.02em;
    margin-bottom: 6px;
  }

  .hero-subtitle {
    font-size: 0.72rem;
    line-height: 1.5;
    margin-bottom: 10px;
    opacity: 0.92;
  }

  .hero-checklist {
    grid-template-columns: 1fr;
    font-size: 0.72rem;
    margin: 10px 0 14px;
    gap: 5px;
  }

  .hero-checklist li {
    padding-left: 16px;
    line-height: 1.4;
  }

  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
    gap: 8px;
  }

  .hero-buttons .cta-btn,
  .cta-buttons .cta-btn {
    flex: none;
    width: 100%;
    min-width: 0;
    padding: 11px 14px;
    font-size: 0.78rem;
    line-height: 1.3;
    text-align: center;
    justify-content: center;
    border-radius: 8px;
    gap: 6px;
  }

  .cta-btn-icon {
    width: 17px;
    height: 17px;
  }

  .brand-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 12px;
    justify-items: center;
    align-items: center;
    margin-bottom: 12px;
  }

  .brand-logo {
    flex: unset;
    width: 100%;
    height: 32px;
  }

  .brand-logo img { height: 22px; max-width: 88%; }

  .model-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    gap: 4px;
    padding: 4px;
    border-radius: 12px;
  }

  .model-tab {
    padding: 8px 4px;
    font-size: 0.68rem;
    line-height: 1.25;
    border-left: none;
    text-align: center;
    white-space: normal;
  }

  .model-tab.active {
    border-color: var(--primary);
    border-left-color: var(--primary);
  }

  .model-table-wrap {
    overflow: visible;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }

  .model-table,
  .model-table tbody,
  .model-table tr,
  .model-table td {
    display: block;
    width: 100%;
  }

  .model-table {
    font-size: 0.8rem;
    border-collapse: collapse;
  }

  .model-table thead {
    display: none;
  }

  .model-table tbody {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .model-table tbody tr {
    border: 1px solid #dce8f4;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 10px rgba(6, 101, 174, 0.08);
  }

  .model-table tbody tr:hover td,
  .model-table tr:nth-child(even) td {
    background: transparent;
  }

  .model-cell-brand {
    padding: 10px 12px !important;
    font-family: var(--font-heading);
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    background: var(--primary) !important;
    letter-spacing: 0.02em;
    white-space: normal;
  }

  .model-cell-series {
    padding: 8px 12px !important;
    font-size: 0.76rem !important;
    font-weight: 600 !important;
    color: var(--primary-dark) !important;
    background: #f0f6fc !important;
    border-bottom: 1px solid #e2edf7;
  }

  .model-cell-series::before {
    content: 'Series · ';
    font-weight: 500;
    color: #64748b;
  }

  .model-cell-models {
    padding: 10px 12px 12px !important;
    background: #fff !important;
  }

  .model-tags {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    width: 100%;
  }

  .model-table tbody:not(.is-expanded) tr.model-row-extra {
    display: none;
  }

  .model-rows-read-more {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 12px 16px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
  }

  .model-rows-read-more:hover {
    background: var(--accent);
  }

  .model-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 4px 3px;
    font-size: 0.64rem;
    line-height: 1.2;
    text-align: center;
    word-break: break-word;
  }

  .disclaimer {
    margin-top: 9px;
    padding: 0;
    font-size: 0.7rem;
    line-height: 1.55;
    white-space: normal;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .product-name {
    font-size: 0.82rem;
    margin: 8px 6px;
    line-height: 1.25;
  }

  .quote-btn {
    padding: 7px 10px;
    font-size: 0.72rem;
    border-radius: 5px;
  }

  .about-content,
  .cases-grid,
  .vr-layout,
  .tech-panel {
    grid-template-columns: 1fr;
  }

  .about-text h2 { font-size: 1.15rem; margin-bottom: 10px; }
  .about-text p { font-size: 0.84rem; line-height: 1.65; margin-bottom: 16px; }

  .video-ico {
    width: 62px;
    height: 62px;
  }

  .video-ico svg {
    width: 28px;
    height: 28px;
  }

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

  .feature-box {
    padding: 18px 10px;
    min-height: 130px;
  }

  .feature-icon-wrap {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
  }

  .feature-icon-wrap img { width: 30px; height: 30px; }

  .feature-box h3 {
    font-size: 0.82rem;
    margin-bottom: 5px;
    line-height: 1.25;
  }

  .feature-box p {
    font-size: 0.7rem;
    line-height: 1.4;
  }

  .case-card-body { padding: 16px; }
  .case-card h3 { font-size: 0.92rem; }
  .case-card p { font-size: 0.78rem; line-height: 1.5; }

  .process-steps,
  .process-photos {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 10px;
  }

  .step-num {
    width: 28px;
    height: 28px;
    font-size: 0.78rem;
  }

  .step-label {
    font-size: 0.68rem;
    min-height: auto;
    margin-top: 4px;
    line-height: 1.3;
  }

  .process-track-row { display: none; }

  .tech-desc,
  .vr-desc {
    font-size: 0.84rem;
  }

  .testimonials-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .testimonials-intro .section-title,
  .testimonials-desc {
    text-align: center;
    max-width: none;
  }

  .testimonials-desc {
    font-size: 0.84rem;
    line-height: 1.6;
    margin-bottom: 18px;
  }

  .testimonials-points {
    max-width: none;
    margin: 0 0 20px;
  }

  .testimonials-points li {
    font-size: 0.78rem;
    margin-bottom: 8px;
    padding-left: 14px;
  }

  .testimonial-thumbs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 5px;
    width: 100%;
    max-width: 300px;
    margin-top: 12px;
  }

  .testimonial-thumb {
    flex: unset;
    width: 100%;
    height: 38px;
  }

  .testimonials-trust {
    justify-content: center;
    max-width: none;
    margin: 0;
    padding-top: 18px;
  }

  .trust-stat-num { font-size: 1.2rem; }
  .trust-stat-label { font-size: 0.62rem; line-height: 1.3; }
  .trust-stat + .trust-stat { padding-left: 12px; }

  .faq-section { padding: 44px 0; }
  .faq-header { margin-bottom: 24px; }
  .faq-desc { font-size: 0.84rem; }
  .faq-question { padding: 14px 4px 14px 0; font-size: 0.82rem; }

  .cta-section {
    margin: 10px;
    padding: 36px 16px;
  }

  .cta-title { font-size: 1.05rem; line-height: 1.3; }
  .cta-subtitle { font-size: 0.82rem; margin-bottom: 18px; }

  .cta-section .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-section .cta-btn { font-size: 0.82rem; padding: 12px 16px; }

  .contact-final { padding: 48px 0 32px; }

  .contact-final-inner { padding: 0 8px; }

  .contact-final-title { font-size: 1rem; letter-spacing: 0.04em; }
  .contact-final-subtitle { margin-bottom: 0; font-size: 0.82rem; }

  .contact-final-title,
  .contact-final-subtitle {
    white-space: normal;
  }

  .contact-tip-card {
    flex-direction: row;
    text-align: left;
    padding: 18px 20px;
  }

  .contact-tip-icon {
    width: 52px;
    height: 52px;
  }

  .contact-guide-img {
    width: 124px;
    height: 82px;
  }

  .contact-guide-item {
    grid-template-columns: 24px 1fr 124px;
    gap: 8px;
    padding: 10px 6px 10px 8px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .submit-button--overlay {
    margin-top: 20px;
  }

  .nav-menu { display: none; }
}

@media (max-width: 480px) {
  .section-title { font-size: 1.05rem; }

  .hero-section { min-height: 380px; }

  .hero-content { max-width: 82%; padding: 20px 16px 16px; }

  .hero-title { font-size: 0.98rem; }

  .hero-checklist { font-size: 0.68rem; gap: 4px; }

  .hero-buttons,
  .hero-content .cta-buttons {
    flex-direction: column;
  }

  .features-grid,
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .brand-logo img { height: 20px; max-width: 85%; }

  .model-tags {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }

  .model-tag { font-size: 0.6rem; padding: 4px 3px; }

  .model-tab { font-size: 0.62rem; padding: 7px 2px; }

  .product-name { font-size: 0.76rem; }

  .quote-btn { font-size: 0.66rem; padding: 6px 8px; }

  .feature-box h3 { font-size: 0.76rem; }

  .feature-box p { font-size: 0.66rem; }

  .process-steps,
  .process-markers,
  .process-photos { grid-template-columns: repeat(3, 1fr); }

  .testimonial-thumbs {
    grid-template-columns: repeat(3, 1fr);
    max-width: 200px;
  }

  .testimonial-thumb { height: 44px; }

  .trust-stat-num { font-size: 1.05rem; }

  .trust-stat-label { font-size: 0.58rem; }

  .iphone-mockup { max-width: 200px; }

  .cert-stack { height: 230px; max-width: 100%; }

  .cert-stack-card.is-left { transform: translate(calc(-50% - 72px), -50%) scale(0.74); width: 42%; }
  .cert-stack-card.is-center { width: 52%; }
  .cert-stack-card.is-right { transform: translate(calc(-50% + 72px), -50%) scale(0.74); width: 42%; }
}

/* #box11 Submit — hover 绿色 */
#box11 .submit-button.submit-button--overlay:hover {
  background-color: var(--whatsapp-green) !important;
  box-shadow: 0 6px 20px rgba(10, 155, 85, 0.45) !important;
}
