:root {
  --gold-100: #fff6db;
  --gold-900: #b3861c;
  --gold-800: #d4af37;
  --gold-700: #e1c468;
  --gold-600: #f0dd9a;
  --gold-500: #c19a6b;
  --blue-900: #102642;
  --blue-800: #1a3f6c;
  --blue-700: #275790;
  --blue-600: #2f6eb3;
  --white: #f7f2de;
  --bg: #0a0b14;
  --surface: #111428;
  --surface-soft: #1b1d2f;
  --text-900: #f9f0be;
  --text-800: #e8dbab;
  --text-700: #d4c188;
  --text-200: #f7f3e2;
  --line: rgba(212, 175, 55, 0.25);
  --shadow-soft: 0 24px 58px rgba(0, 0, 0, 0.45);
  --shadow-card: 0 14px 35px rgba(0, 0, 0, 0.42);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --max-width: 1160px;
}

html[data-theme="light"] {
  --gold-100: #7b6022;
  --gold-900: #8d6a1a;
  --gold-800: #b88a22;
  --gold-700: #c89b3e;
  --gold-600: #e3c98f;
  --gold-500: #b8944f;
  --blue-900: #1b3354;
  --blue-800: #264e82;
  --blue-700: #2f639f;
  --blue-600: #3574bd;
  --white: #1b2431;
  --bg: #f2f5fb;
  --surface: #ffffff;
  --surface-soft: #f5f8ff;
  --text-900: #1f2735;
  --text-800: #2d394d;
  --text-700: #4f6079;
  --text-200: #1f2735;
  --line: rgba(37, 64, 102, 0.16);
  --shadow-soft: 0 18px 42px rgba(31, 48, 74, 0.12);
  --shadow-card: 0 10px 25px rgba(31, 48, 74, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text-900);
  background: radial-gradient(circle at top, #141827 0%, var(--bg) 35%, #06070e 100%);
  line-height: 1.65;
  overflow-x: hidden;
}

html[data-theme="light"] body {
  background: radial-gradient(circle at top, #ffffff 0%, var(--bg) 38%, #e9effb 100%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: 1.2;
  font-family: "Playfair Display", serif;
  letter-spacing: -0.02em;
  color: var(--white);
}

p,
ul,
li,
label,
button,
input,
textarea {
  color: var(--text-900);
}

a {
  text-decoration: none;
  color: var(--gold-700);
}

a:hover,
a:focus {
  color: var(--gold-600);
}

p {
  margin: 0;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(100% - 2.4rem, var(--max-width));
  margin: 0 auto;
}

.section {
  padding: clamp(4rem, 7vw, 7rem) 0;
  position: relative;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 215, 0, 0.08), rgba(20, 23, 47, 0.4));
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.section-tag {
  display: inline-flex;
  margin-bottom: 0.9rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--gold-600);
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}

.section-head h2,
.page-hero h1 {
  font-size: clamp(1.7rem, 4vw, 2.9rem);
}

.section-head p,
.page-hero p {
  margin-top: 0.9rem;
  color: var(--text-700);
  max-width: 68ch;
}

.section-head.center {
  text-align: center;
}

.section-text {
  margin-top: 1rem;
  color: var(--text-700);
  max-width: 62ch;
}

.section {
  background: rgba(13, 15, 27, 0.6);
}

.card,
.card-grid > *,
.metric-card,
.quote-card,
.hero-panel,
.site-header,
footer {
  background: var(--surface);
  color: var(--text-900);
}

.btn,
input,
textarea,
select,
button {
  color: var(--white);
}

.btn-ghost,
.btn-primary {
  font-weight: 700;
}

.btn-ghost:hover,
.btn-primary:hover {
  color: #1b0e00;
}

body * {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

html[data-theme="light"] body * {
  text-shadow: none;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  border: none;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  padding: 0.75rem 1.2rem;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

.btn-primary {
  color: #1b0e00;
  background: linear-gradient(130deg, var(--gold-600), var(--gold-900));
  box-shadow: 0 12px 26px rgba(212, 175, 55, 0.45);
}

.btn-primary:hover {
  box-shadow: 0 16px 35px rgba(212, 175, 55, 0.52);
  transform: translateY(-2px) scale(1.02);
}

.btn-ghost {
  color: var(--gold-900);
  background: rgba(27, 20, 0, 0.14);
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.1rem;
}

.site-bg {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

.site-bg-one {
  width: 560px;
  height: 560px;
  top: -230px;
  right: -180px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.35), rgba(0, 0, 0, 0));
}

.site-bg-two {
  width: 520px;
  height: 520px;
  bottom: -210px;
  left: -170px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.2), rgba(0, 0, 0, 0));
}

.progress-track {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(212, 175, 55, 0.25);
  z-index: 50;
}

.progress-track span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-700), var(--gold-900));
  transition: width 120ms linear;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 35;
  padding: 0.9rem 0;
  transition: background-color 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}

.site-header.scrolled {
  background: rgba(12, 10, 23, 0.82);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-left: 0;
  position: fixed;
  top: 0.84rem;
  right: 0.9rem;
  z-index: 130;
  flex-shrink: 0;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.45);
  background: rgba(10, 12, 20, 0.58);
  color: var(--text-900);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.theme-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(240, 221, 154, 0.85);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.theme-toggle:focus-visible {
  outline: 2px solid rgba(240, 221, 154, 0.85);
  outline-offset: 3px;
}

.theme-toggle-icon {
  display: inline-grid;
  place-items: center;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid rgba(212, 175, 55, 0.44);
  font-size: 0.68rem;
}

html[data-theme="light"] .theme-toggle {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(37, 64, 102, 0.24);
  color: var(--text-900);
}

html[data-theme="light"] .theme-toggle:hover {
  border-color: rgba(37, 64, 102, 0.42);
  box-shadow: 0 8px 20px rgba(31, 48, 74, 0.14);
}

html[data-theme="light"] .theme-toggle:focus-visible {
  outline-color: rgba(37, 64, 102, 0.52);
}

html[data-theme="light"] .theme-toggle-icon {
  background: rgba(37, 64, 102, 0.1);
  border-color: rgba(37, 64, 102, 0.2);
}

html[data-theme="light"] .site-header {
  background: rgba(252, 254, 255, 0.78);
  border-bottom: 1px solid var(--line);
}

html[data-theme="light"] .site-header.scrolled {
  background: rgba(252, 254, 255, 0.95);
  box-shadow: 0 8px 24px rgba(31, 48, 74, 0.12);
}

html[data-theme="light"] .brand-text-plain {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(37, 64, 102, 0.24);
  box-shadow: 0 8px 20px rgba(31, 48, 74, 0.12), inset 0 0 10px rgba(37, 64, 102, 0.06);
}

html[data-theme="light"] .brand-text-plain strong {
  color: #1f2735;
}

html[data-theme="light"] .brand-text-plain small {
  color: #4f6079;
}

html[data-theme="light"] .nav-link {
  color: var(--text-700);
}

html[data-theme="light"] .nav-link:hover,
html[data-theme="light"] .nav-link.active {
  color: var(--blue-800);
}

html[data-theme="light"] .nav-dropdown {
  background: #ffffff;
  border-color: var(--line);
  box-shadow: 0 14px 28px rgba(31, 48, 74, 0.14);
}

html[data-theme="light"] .section {
  background: rgba(255, 255, 255, 0.5);
}

html[data-theme="light"] .section-soft {
  background: linear-gradient(180deg, rgba(200, 220, 250, 0.22), rgba(255, 255, 255, 0.65));
  border-top-color: var(--line);
  border-bottom-color: var(--line);
}

html[data-theme="light"] .card,
html[data-theme="light"] .card-grid > *,
html[data-theme="light"] .metric-card,
html[data-theme="light"] .quote-card,
html[data-theme="light"] .hero-panel,
html[data-theme="light"] footer {
  background: var(--surface);
  color: var(--text-900);
}

html[data-theme="light"] .site-bg {
  opacity: 0.32;
}

html[data-theme="light"] .service-card,
html[data-theme="light"] .glass-card,
html[data-theme="light"] .timeline-step,
html[data-theme="light"] .contact-card,
html[data-theme="light"] .contact-info-item,
html[data-theme="light"] .contact-form,
html[data-theme="light"] .contact-hero-panel-inner,
html[data-theme="light"] .product-card,
html[data-theme="light"] .product-card-minimal,
html[data-theme="light"] .product-detail-panel,
html[data-theme="light"] .product-media-detail,
html[data-theme="light"] .showcase-surface,
html[data-theme="light"] .showcase-note,
html[data-theme="light"] .cta-band,
html[data-theme="light"] .category-card,
html[data-theme="light"] .category-card-sidebar,
html[data-theme="light"] .products-page .products-hero-stat,
html[data-theme="light"] .products-page .products-catalog .tools-row,
html[data-theme="light"] .products-page .product-card-catalog,
html[data-theme="light"] .gallery-card,
html[data-theme="light"] .gallery-page .gallery-card-premium,
html[data-theme="light"] .about-page .about-kpi-card,
html[data-theme="light"] .about-page .about-metric-card {
  background: var(--surface) !important;
  color: var(--text-900) !important;
  border-color: var(--line) !important;
  box-shadow: var(--shadow-card) !important;
}

html[data-theme="light"] .page-hero,
html[data-theme="light"] .products-page .products-hero,
html[data-theme="light"] .product-detail-page .product-detail-hero,
html[data-theme="light"] .about-page .about-hero,
html[data-theme="light"] .contact-page .contact-hero,
html[data-theme="light"] .gallery-page,
html[data-theme="light"] .contact-page,
html[data-theme="light"] .site-footer {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.95), rgba(241, 246, 255, 0.92)) !important;
  border-color: var(--line) !important;
}

html[data-theme="light"] .section-head h2,
html[data-theme="light"] .page-hero h1,
html[data-theme="light"] .cta-band h2,
html[data-theme="light"] .service-card h3,
html[data-theme="light"] .glass-card h3,
html[data-theme="light"] .contact-card h3,
html[data-theme="light"] .contact-info-item h4,
html[data-theme="light"] .gallery-caption h3,
html[data-theme="light"] .products-page .product-card-catalog h3,
html[data-theme="light"] .product-title,
html[data-theme="light"] .badge,
html[data-theme="light"] .products-page .products-hero-stat strong,
html[data-theme="light"] .footer-grid h3,
html[data-theme="light"] .footer-grid h4 {
  color: var(--text-900) !important;
}

html[data-theme="light"] .section-head p,
html[data-theme="light"] .page-hero p,
html[data-theme="light"] .section-text,
html[data-theme="light"] .product-summary,
html[data-theme="light"] .product-meta,
html[data-theme="light"] .gallery-caption p,
html[data-theme="light"] .contact-form-intro p,
html[data-theme="light"] .contact-form label,
html[data-theme="light"] .contact-card p,
html[data-theme="light"] .contact-info-item p,
html[data-theme="light"] .footer-grid p,
html[data-theme="light"] .footer-bottom,
html[data-theme="light"] .footer-list a,
html[data-theme="light"] .about-page .about-kpi-card p,
html[data-theme="light"] .quote-card p {
  color: var(--text-700) !important;
}

html[data-theme="light"] .contact-form input,
html[data-theme="light"] .contact-form textarea,
html[data-theme="light"] .search-field input,
html[data-theme="light"] .filter-btn,
html[data-theme="light"] .product-thumb,
html[data-theme="light"] .detail-slider-arrow,
html[data-theme="light"] .lightbox-shell,
html[data-theme="light"] .lightbox-close,
html[data-theme="light"] .lightbox-nav {
  background: #ffffff !important;
  color: var(--text-900) !important;
  border-color: var(--line) !important;
}

html[data-theme="light"] .product-media,
html[data-theme="light"] .product-card-catalog .product-media,
html[data-theme="light"] .section-products-home .product-card-showcase .product-media,
html[data-theme="light"] .product-media-main img,
html[data-theme="light"] .product-card-catalog .product-media-main img,
html[data-theme="light"] .section-products-home .product-card-showcase .product-media-main img {
  background: #f8fbff !important;
}

html[data-theme="light"] .product-detail-page .product-detail-hero,
html[data-theme="light"] .product-detail-page .product-detail-main,
html[data-theme="light"] .product-detail-page .product-detail-extra {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.96), rgba(243, 248, 255, 0.94)) !important;
}

html[data-theme="light"] .product-detail-page .product-detail-hero .breadcrumb,
html[data-theme="light"] .product-detail-page .detail-trust-strip span,
html[data-theme="light"] .product-detail-page .detail-chip,
html[data-theme="light"] .product-detail-page .detail-slider-indicator {
  background: #f5f9ff !important;
  border-color: var(--line) !important;
  color: var(--text-700) !important;
}

html[data-theme="light"] .product-detail-page .product-detail-panel,
html[data-theme="light"] .product-detail-page .product-media-detail,
html[data-theme="light"] .product-detail-page .detail-spec-card,
html[data-theme="light"] .product-detail-page .product-grid.preview .product-card,
html[data-theme="light"] .product-detail-page .product-detail-extra .glass-card {
  background: #ffffff !important;
  border-color: var(--line) !important;
  box-shadow: var(--shadow-card) !important;
}

html[data-theme="light"] .product-detail-page .product-detail-panel h2,
html[data-theme="light"] .product-detail-page .product-detail-panel h3,
html[data-theme="light"] .product-detail-page .product-detail-panel .badge,
html[data-theme="light"] .product-detail-page .detail-spec-card strong,
html[data-theme="light"] .product-detail-page .product-grid.preview .product-card h3,
html[data-theme="light"] .product-detail-page .product-grid.preview .product-card .product-meta,
html[data-theme="light"] .product-detail-page .product-grid.preview .product-card p {
  color: var(--text-900) !important;
}

html[data-theme="light"] .product-detail-page .product-detail-panel .product-meta,
html[data-theme="light"] .product-detail-page .detail-feature-list li,
html[data-theme="light"] .product-detail-page .detail-spec-card span,
html[data-theme="light"] .product-detail-page .detail-chip,
html[data-theme="light"] .product-detail-page .detail-trust-strip span,
html[data-theme="light"] .product-detail-page .product-detail-extra .glass-card p,
html[data-theme="light"] .product-detail-page .product-detail-extra .glass-card li {
  color: var(--text-700) !important;
}

html[data-theme="light"] .product-detail-page .detail-feature-list li::before,
html[data-theme="light"] .product-detail-page .detail-spec-card span,
html[data-theme="light"] .product-detail-page .product-detail-panel .badge,
html[data-theme="light"] .product-detail-page .detail-chip,
html[data-theme="light"] .product-detail-page .detail-trust-strip span {
  color: var(--blue-800) !important;
}

html[data-theme="light"] .product-detail-page .detail-slider-arrow,
html[data-theme="light"] .product-detail-page .product-thumb,
html[data-theme="light"] .product-detail-page .detail-main-frame {
  background: #ffffff !important;
  border-color: var(--line) !important;
  color: var(--text-900) !important;
}

html[data-theme="light"] .product-detail-page .detail-kpi-card,
html[data-theme="light"] .product-detail-page .detail-contact-card {
  background: #ffffff !important;
  border-color: var(--line) !important;
}

html[data-theme="light"] .product-detail-page .detail-kpi-card span,
html[data-theme="light"] .product-detail-page .detail-contact-title {
  color: var(--blue-800) !important;
}

html[data-theme="light"] .product-detail-page .detail-kpi-card strong,
html[data-theme="light"] .product-detail-page .detail-contact-card p,
html[data-theme="light"] .product-detail-page .detail-contact-lines a,
html[data-theme="light"] .product-detail-page .detail-contact-lines span {
  color: var(--text-900) !important;
}

html[data-theme="light"] .products-page .products-catalog .section-text,
html[data-theme="light"] .products-page .products-results-pill,
html[data-theme="light"] .products-page .tools-clear-link,
html[data-theme="light"] .products-page .search-field span,
html[data-theme="light"] .products-page .category-card strong,
html[data-theme="light"] .products-page .category-card small,
html[data-theme="light"] .products-page .category-card-sidebar .category-name,
html[data-theme="light"] .products-page .category-card-sidebar .category-count,
html[data-theme="light"] .products-page .product-card-catalog .badge,
html[data-theme="light"] .products-page .product-card-catalog .product-meta,
html[data-theme="light"] .products-page .product-card-catalog .product-summary,
html[data-theme="light"] .products-page .product-card-catalog .product-meta span {
  color: var(--text-700) !important;
}

html[data-theme="light"] .products-page .products-catalog .tools-row,
html[data-theme="light"] .products-page .products-results-pill,
html[data-theme="light"] .products-page .category-card,
html[data-theme="light"] .products-page .category-card-sidebar,
html[data-theme="light"] .products-page .category-card-sidebar.active,
html[data-theme="light"] .products-page .category-card-sidebar .category-count,
html[data-theme="light"] .products-page .category-card-sidebar.active .category-count,
html[data-theme="light"] .products-page .product-card-catalog .badge {
  background: #f5f9ff !important;
  border-color: var(--line) !important;
}

html[data-theme="light"] .products-page .tools-clear-link,
html[data-theme="light"] .products-page .search-field span,
html[data-theme="light"] .products-page .category-card strong,
html[data-theme="light"] .products-page .category-card-sidebar .category-name,
html[data-theme="light"] .products-page .product-card-catalog h3,
html[data-theme="light"] .products-page .product-card-catalog .badge {
  color: var(--text-900) !important;
}

html[data-theme="light"] .products-page .search-field input {
  color: var(--text-900) !important;
  background: #ffffff !important;
  border-color: var(--line) !important;
}

html[data-theme="light"] .products-page .search-field input::placeholder {
  color: var(--text-700) !important;
}

html[data-theme="light"] .products-page .product-card-catalog .product-actions {
  border-top-color: var(--line) !important;
}

html[data-theme="light"] .contact-hero-list li,
html[data-theme="light"] .contact-hero-list a,
html[data-theme="light"] .about-page .about-hero-points span,
html[data-theme="light"] .contact-hero-points span,
html[data-theme="light"] .gallery-pill,
html[data-theme="light"] .gallery-pill-muted,
html[data-theme="light"] .product-detail-page .detail-chip,
html[data-theme="light"] .product-detail-page .detail-trust-strip span,
html[data-theme="light"] .products-page .products-hero-stat span,
html[data-theme="light"] .section-products-home .product-badge,
html[data-theme="light"] .products-page .product-card-catalog .badge,
html[data-theme="light"] .breadcrumb,
html[data-theme="light"] .breadcrumb a,
html[data-theme="light"] .empty-state,
html[data-theme="light"] .notice,
html[data-theme="light"] .notice.success,
html[data-theme="light"] .notice.error,
html[data-theme="light"] .faq-question,
html[data-theme="light"] .faq-answer p,
html[data-theme="light"] .timeline-step p,
html[data-theme="light"] .check-list li,
html[data-theme="light"] .showcase-note span,
html[data-theme="light"] .quote-card span {
  color: var(--text-700) !important;
}

html[data-theme="light"] .about-page .about-hero-points span,
html[data-theme="light"] .contact-hero-points span,
html[data-theme="light"] .gallery-pill,
html[data-theme="light"] .gallery-pill-muted,
html[data-theme="light"] .product-detail-page .detail-chip,
html[data-theme="light"] .product-detail-page .detail-trust-strip span,
html[data-theme="light"] .products-page .products-hero-stat,
html[data-theme="light"] .products-page .products-hero-stat span,
html[data-theme="light"] .section-products-home .product-badge,
html[data-theme="light"] .products-page .product-card-catalog .badge,
html[data-theme="light"] .product-detail-page .product-detail-hero .breadcrumb,
html[data-theme="light"] .showcase-note,
html[data-theme="light"] .empty-state,
html[data-theme="light"] .notice,
html[data-theme="light"] .detail-slider-indicator,
html[data-theme="light"] .lightbox-chip {
  background: #f6f9ff !important;
  border-color: var(--line) !important;
}

html[data-theme="light"] .about-page .about-hero-media {
  border-color: rgba(37, 64, 102, 0.24);
  box-shadow: 0 18px 34px rgba(31, 48, 74, 0.16);
}

html[data-theme="light"] .about-page .about-hero-media::before {
  background:
    linear-gradient(180deg, rgba(232, 241, 255, 0.08), rgba(24, 39, 63, 0.14)),
    radial-gradient(90% 52% at 50% 100%, rgba(184, 138, 34, 0.2), transparent 70%);
}

html[data-theme="light"] .about-page .about-slider-nav {
  border-color: rgba(37, 64, 102, 0.28);
  background: rgba(255, 255, 255, 0.84);
  color: #1f3557;
}

html[data-theme="light"] .about-page .about-slider-nav:hover {
  border-color: rgba(37, 64, 102, 0.5);
  background: rgba(255, 255, 255, 0.96);
}

html[data-theme="light"] .about-page .about-slider-dot {
  border-color: rgba(37, 64, 102, 0.44);
  background: rgba(37, 64, 102, 0.18);
}

html[data-theme="light"] .about-page .about-slider-dot.is-active {
  background: #b88a22;
}

html[data-theme="light"] .contact-hero-list a,
html[data-theme="light"] .footer-list a,
html[data-theme="light"] .breadcrumb a,
html[data-theme="light"] .contact-info-item a,
html[data-theme="light"] .tools-clear-link,
html[data-theme="light"] .nav-dropdown-link,
html[data-theme="light"] .faq-question::after,
html[data-theme="light"] .detail-spec-card span,
html[data-theme="light"] .product-meta,
html[data-theme="light"] .gallery-caption h3,
html[data-theme="light"] .timeline-step span {
  color: var(--blue-800) !important;
}

html[data-theme="light"] .contact-hero-panel-inner h3,
html[data-theme="light"] .showcase-note p,
html[data-theme="light"] .products-page .products-hero-stat strong,
html[data-theme="light"] .product-detail-page .product-detail-panel h2,
html[data-theme="light"] .product-detail-page .product-detail-panel h3,
html[data-theme="light"] .product-detail-page .detail-spec-card strong,
html[data-theme="light"] .product-detail-page .detail-feature-list li,
html[data-theme="light"] .timeline-step h3,
html[data-theme="light"] .about-page .about-kpi-card span,
html[data-theme="light"] .about-page .about-metric-card h3,
html[data-theme="light"] .gallery-toolbar-copy h2 {
  color: var(--text-900) !important;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  background: linear-gradient(140deg, var(--blue-600), var(--blue-900));
  box-shadow: var(--shadow-card);
}

.brand-text-plain {
  display: grid;
  gap: 0.1rem;
  text-align: left;
  line-height: 1.1;
  font-family: 'Montserrat', 'Manrope', sans-serif;
  color: var(--gold-100);
  position: relative;
  padding: 0.5rem 0.8rem;
  border-radius: 0.75rem;
  background: rgba(0,0,0,0.48);
  border: 1px solid rgba(255, 220, 120, 0.42);
  backdrop-filter: blur(3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.48), inset 0 0 18px rgba(255, 215, 120, 0.24);
  overflow: hidden;
}

.brand-text-plain::before,
.brand-text-plain::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.brand-text-plain::before {
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 247, 194, 0.22), transparent 45%);
}

.brand-text-plain::after {
  inset: 0;
  background-image: linear-gradient(45deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 45%, rgba(255,255,255,0.15) 55%, rgba(255,255,255,0) 100%);
  mask-image: linear-gradient(to bottom, transparent, rgba(255,255,255,1) 30%, rgba(255,255,255,1) 70%, transparent);
  opacity: 0.35;
}

.brand-text-plain strong {
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #ffffff;
  text-shadow: 0 0 6px rgba(255, 221, 118, 0.75), 0 2px 1px rgba(0,0,0,0.45);
  position: relative;
  z-index: 2;
}

.brand-text-plain small {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 245, 190, 0.95);
  position: relative;
  z-index: 2;
}

.brand-text-plain::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.1) 0%, rgba(255,255,255,0.35) 50%, rgba(255,255,255,0.1) 100%);
  transform: skewX(-20deg);
  animation: shine-sweep 2.4s linear infinite;
  z-index: 2;
}

@keyframes shine-sweep {
  0% { left: -100%; opacity: 0; }
  20% { opacity: 0.65; }
  50% { left: 100%; opacity: 0.45; }
  80% { opacity: 0.1; }
  100% { left: 220%; opacity: 0; }
}

@keyframes logo-glow {
  0%, 100% { box-shadow: 0 8px 16px rgba(255, 215, 110, 0.35), inset 0 0 18px rgba(255, 200, 100, 0.12); }
  50% { box-shadow: 0 8px 20px rgba(255, 235, 150, 0.55), inset 0 0 24px rgba(255, 230, 140, 0.2); }
}

.brand-text-plain {
  animation: logo-glow 2.8s ease-in-out infinite;
}

.brand-mark.brand-mark-logo,
.brand-mark .logo-icon,
.brand-mark .logo-text,
.brand-mark .logo-light,
.brand-mark .logo-glow {
  display: none !important;
}

@media (min-width: 960px) {
  .brand-text-plain strong {
    font-size: 1.2rem;
  }
  .brand-text-plain small {
    font-size: 0.72rem;
  }
}

.brand-text strong {
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.brand-text small {
  color: var(--text-700);
  font-size: 0.68rem;
  letter-spacing: 0.02em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-left: auto;
  order: 2;
}

.nav-link {
  color: var(--text-700);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 180ms ease;
}

.nav-item {
  position: relative;
}

.nav-item.has-dropdown .nav-link,
.nav-item .nav-link:has(.dropdown-arrow) {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.dropdown-arrow {
  display: inline-block;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  stroke: var(--gold-700);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1), stroke 200ms ease;
  transform-origin: center;
  vertical-align: middle;
}

.nav-item:hover .dropdown-arrow,
.nav-item:focus-within .dropdown-arrow {
  transform: rotate(180deg);
  stroke: var(--gold-600);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(10, 13, 18, 0.96);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 10px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.3);
  display: none;
  min-width: 220px;
  z-index: 50;
  padding: 0.5rem 0;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  display: block;
}

.nav-dropdown-link {
  display: block;
  padding: 0.65rem 1rem;
  color: var(--text-200);
  font-size: 0.9rem;
  text-transform: none;
  transition: background-color 150ms ease, color 150ms ease;
}

.nav-dropdown-link:hover {
  background-color: rgba(255, 215, 0, 0.12);
  color: var(--gold-100);
}

.nav-link:hover {
  color: var(--gold-800);
}

.nav-link.active {
  color: var(--gold-800);
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  position: relative;
}

.nav-toggle span {
  position: absolute;
  left: 10px;
  width: 22px;
  height: 2px;
  background: var(--text-900);
  transition: transform 210ms ease;
}

.nav-toggle span:first-child {
  top: 15px;
}

.nav-toggle span:last-child {
  top: 24px;
}

.nav-toggle.open span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle.open span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

.hero {
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.hero-slider {
  --hero-width: 100%;
  --hero-height: calc(100svh - 4.5rem);
  --hero-min-height: 26rem;
  --hero-safe-left: clamp(1rem, 4.5vw, 5.5rem);
  --hero-safe-bottom: clamp(1.4rem, 6vw, 4.2rem);

  position: relative;
  width: var(--hero-width);
  height: var(--hero-height);
  min-height: var(--hero-min-height);
  overflow: hidden;
  overflow: clip;
  clip-path: inset(0);
  isolation: isolate;
  background: #060606;
}

.hero-slider::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.15) 0%,
      transparent 28%,
      transparent 58%,
      rgba(0, 0, 0, 0.54) 100%
    );
  z-index: 2;
  pointer-events: none;
}

.hero-slider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.16) 38%, rgba(0, 0, 0, 0.52) 100%);
  mix-blend-mode: normal;
  z-index: 2;
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  overflow: hidden;
  will-change: opacity;
  transition: opacity 1100ms cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-slide.slide-exit {
  opacity: 0;
  z-index: 1;
  transition: opacity 900ms cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform: scale(1.06);
  transition: transform 8000ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.hero-slide.is-active img {
  transform: scale(1.0);
}

/* ── Hero Slide Content Overlay ── */
.hero-slide-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--hero-safe-bottom) var(--hero-safe-left);
  pointer-events: none;
}

/* Slide 1 — Logo */
.hero-slide-content--logo {
  align-items: flex-start;
  justify-content: center;
  padding-top: clamp(2.2rem, 10vh, 6rem);
}

.hero-slide-content--logo .hero-logo-img {
  max-width: min(600px, 78%);
  max-height: 48vh;
  width: auto;
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 4px 24px rgba(0, 0, 0, 0.7))
    drop-shadow(0 0 80px rgba(0, 0, 0, 0.35));
  opacity: 0;
  transform: translateY(40px) scale(0.84);
  transition:
    opacity  1100ms cubic-bezier(0.22, 1, 0.36, 1) 300ms,
    transform 1100ms cubic-bezier(0.22, 1, 0.36, 1) 300ms;
}

.hero-slide.is-active .hero-slide-content--logo .hero-logo-img {
  opacity: 1;
  transform: translateY(-18px) scale(1.04);
}

/* Slide 2 & 3 — Text group */
.hero-slide-content:not(.hero-slide-content--logo) {
  justify-content: flex-start;
  align-items: flex-end;
}

.hero-text-group {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  width: min(100%, 700px);
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2.2vw, 1.8rem) clamp(1rem, 2.6vw, 2rem);
  border: 1px solid rgba(212, 175, 55, 0.38);
  border-radius: 16px;
  background: linear-gradient(150deg, rgba(20, 20, 24, 0.56), rgba(18, 18, 24, 0.36));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(212, 175, 55, 0.1), inset 0 1px 0 rgba(255, 220, 100, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-eyebrow {
  display: block;
  font-size: clamp(0.7rem, 1.25vw, 0.86rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 0.95rem;
  text-shadow: 0 0 10px rgba(245, 208, 106, 0.35), 0 2px 8px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transform: translateX(-22px);
  transition:
    opacity  750ms cubic-bezier(0.22, 1, 0.36, 1) 80ms,
    transform 750ms cubic-bezier(0.22, 1, 0.36, 1) 80ms;
}

.hero-title {
  margin: 0 0 0.6rem;
  font-size: clamp(2.1rem, 6vw, 5.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 0.95;
  letter-spacing: -0.025em;
  max-width: 10ch;
  text-wrap: balance;
  text-shadow:
    0 2px 14px rgba(0, 0, 0, 0.42),
    0 0 22px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(42px);
  filter: blur(8px);
  transition:
    opacity  1000ms cubic-bezier(0.16, 1, 0.3, 1) 220ms,
    transform 1000ms cubic-bezier(0.16, 1, 0.3, 1) 220ms,
    filter    900ms cubic-bezier(0.16, 1, 0.3, 1) 220ms;
}

.hero-divider {
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ffffff 0%, rgba(245, 208, 106, 0.08) 100%);
  margin: 0.72rem 0 1.12rem;
  opacity: 0;
  box-shadow: 0 0 12px rgba(245, 208, 106, 0.5);
  transition:
    width   800ms cubic-bezier(0.16, 1, 0.3, 1) 500ms,
    opacity 600ms ease 500ms;
}

.hero-subtitle {
  margin: 0;
  font-size: clamp(0.82rem, 1.35vw, 1.08rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.07em;
  line-height: 1.45;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity  800ms cubic-bezier(0.22, 1, 0.36, 1) 560ms,
    transform 800ms cubic-bezier(0.22, 1, 0.36, 1) 560ms;
}

.hero-badges {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 1.1rem;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity  800ms cubic-bezier(0.22, 1, 0.36, 1) 680ms,
    transform 800ms cubic-bezier(0.22, 1, 0.36, 1) 680ms;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.46rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.22), rgba(0, 0, 0, 0.4));
  box-shadow: inset 0 1px 0 rgba(255, 230, 130, 0.2), 0 4px 14px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

.hero-badge::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff, #ffffff);
  box-shadow: 0 0 6px rgba(245, 208, 106, 0.9);
  flex-shrink: 0;
}

.hero-slide .hero-actions {
  margin-top: 1rem;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition:
    opacity  800ms cubic-bezier(0.22, 1, 0.36, 1) 760ms,
    transform 800ms cubic-bezier(0.22, 1, 0.36, 1) 760ms;
}

.hero-slide .hero-actions .btn {
  min-width: 9.8rem;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.06em;
  font-weight: 700;
  font-size: 0.88rem;
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 26px rgba(255, 255, 255, 0.32);
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease, border-color 200ms ease, color 200ms ease;
}

.hero-slide.is-active .hero-actions .btn {
  animation: heroCtaPulse 2.3s ease-in-out infinite;
}

.hero-slide .hero-actions .btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -130%;
  width: 70%;
  height: 100%;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.55) 50%, transparent 100%);
  transform: skewX(-24deg);
  pointer-events: none;
}

.hero-slide.is-active .hero-actions .btn::after {
  animation: heroCtaShine 2.8s ease-in-out infinite;
}

.hero-slide .hero-actions .btn:hover {
  transform: translateY(-2px);
  animation: none;
}

.hero-slide .hero-actions .btn:hover::after,
.hero-slide .hero-actions .btn:focus-visible::after {
  animation: none;
}

.hero-slide .hero-actions .btn.btn-primary {
  color: #0a0b10;
  background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
  border-color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.44), inset 0 -1px 0 rgba(0, 0, 0, 0.08);
  text-shadow: none;
}

.hero-slide .hero-actions .btn.btn-primary:hover {
  color: #05060b;
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 45%, #eef3ff 100%);
  border-color: #ffffff;
  box-shadow: 0 16px 36px rgba(255, 255, 255, 0.58), 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.hero-slide .hero-actions .btn.btn-ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  box-shadow: 0 12px 28px rgba(255, 255, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.hero-slide .hero-actions .btn.btn-ghost:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.32);
  border-color: #ffffff;
  box-shadow: 0 14px 34px rgba(255, 255, 255, 0.32), 0 0 0 2px rgba(255, 255, 255, 0.25);
}

.hero-slide .hero-actions .btn:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
  animation: none;
}

@keyframes heroCtaPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 10px 26px rgba(255, 255, 255, 0.28);
  }
  50% {
    transform: translateY(-2px);
    box-shadow: 0 15px 34px rgba(255, 255, 255, 0.46);
  }
}

@keyframes heroCtaShine {
  0%,
  55% {
    left: -130%;
    opacity: 0;
  }
  60% {
    opacity: 0.95;
  }
  85% {
    left: 135%;
    opacity: 0.22;
  }
  100% {
    left: 135%;
    opacity: 0;
  }
}

.hero-slide.is-active .hero-eyebrow {
  opacity: 1;
  transform: translateX(0);
}

.hero-slide.is-active .hero-title {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.hero-slide.is-active .hero-divider {
  width: 88px;
  opacity: 1;
}

.hero-slide.is-active .hero-subtitle,
.hero-slide.is-active .hero-badges,
.hero-slide.is-active .hero-actions {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, rgba(20, 16, 6, 0.65), rgba(10, 8, 4, 0.55));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #f5d06a;
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
  outline: none;
  box-shadow: 0 4px 18px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,220,100,0.18);
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.hero-nav:hover {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.45), rgba(180, 140, 20, 0.3));
  border-color: rgba(245, 208, 106, 0.85);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.45), 0 12px 26px rgba(0, 0, 0, 0.45);
  transform: translateY(-50%) scale(1.1);
}

.hero-nav:focus-visible {
  outline: 2px solid rgba(212, 175, 55, 0.85);
  outline-offset: 3px;
}

.hero-nav svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke: currentColor;
  stroke-width: 2.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}

.hero-nav-prev {
  left: 1.4rem;
}

.hero-nav-next {
  right: 1.4rem;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 2.2rem;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 4;
}

.hero-dot {
  height: 0.45rem;
  width: 0.45rem;
  border-radius: 999px;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.38);
  overflow: hidden;
  transition: width 360ms cubic-bezier(0.4, 0, 0.2, 1), transform 200ms ease, background 200ms ease;
}

.hero-dot:hover {
  background: rgba(212, 175, 55, 0.65);
  transform: translateY(-2px);
}

.hero-dot.is-active {
  width: 2.2rem;
  background: rgba(212, 175, 55, 0.35);
}

.hero-dot-fill {
  display: block;
  height: 100%;
  width: 100%;
  background: #fff;
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left;
}

.hero-dot.is-active .hero-dot-fill {
  animation: heroDotFill 7s linear forwards;
}

@keyframes heroDotFill {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.hero-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 5;
  overflow: hidden;
}

.hero-progress-bar-fill {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(to right, #d4af37, #efc766 60%, rgba(239, 199, 102, 0.5));
  transform: scaleX(0);
  transform-origin: left;
}

.hero-progress-bar.is-running .hero-progress-bar-fill {
  animation: heroProgress 7s linear forwards;
}

@keyframes heroProgress {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.card-grid {
  margin-top: 1.7rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.reference-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.3rem;
}

.reference-strip span {
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 999px;
  padding: 0.52rem 0.8rem;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-600);
  background: rgba(20, 22, 40, 0.8);
}

.quote-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.quote-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  padding: 1.2rem;
}

.quote-card p {
  color: var(--text-900);
  font-size: 0.95rem;
  line-height: 1.6;
}

.quote-card span {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: var(--text-700);
  font-weight: 700;
}

.service-card {
  background: rgba(16, 18, 34, 0.97);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.55);
  padding: 1.3rem;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.65);
  box-shadow: 0 22px 38px rgba(0, 0, 0, 0.55);
}

.service-card h3 {
  font-size: 1.2rem;
}

.service-card p {
  margin-top: 0.65rem;
  color: var(--text-700);
  font-size: 0.92rem;
}

.showcase-grid {
  display: grid;
  align-items: center;
  gap: 1.9rem;
  grid-template-columns: 1fr 0.95fr;
}

.check-list {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.55rem;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-700);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-700);
}

.showcase-surface {
  border-radius: var(--radius-xl);
  min-height: 340px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 74% 18%, rgba(76, 153, 255, 0.44), transparent 40%),
    linear-gradient(145deg, var(--blue-700), var(--blue-900));
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.showcase-note {
  width: min(88%, 370px);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.38);
  padding: 1.1rem 1.1rem;
  backdrop-filter: blur(3px);
}

.showcase-note p {
  color: var(--white);
  font-size: 1.15rem;
  line-height: 1.45;
}

.showcase-note span {
  display: block;
  margin-top: 0.55rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.83rem;
}

.cta-band {
  background: linear-gradient(145deg, rgba(15, 17, 27, 0.93), rgba(8, 9, 15, 0.95));
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-xl);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.65);
  padding: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.cta-band h2 {
  font-size: clamp(1.5rem, 3.2vw, 2.15rem);
  max-width: 26ch;
  color: var(--white);
}

.cta-band p {
  color: var(--text-700);
}

.page-hero {
  padding-top: clamp(3.1rem, 7vw, 6.2rem);
  padding-bottom: clamp(2.6rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(212, 175, 55, 0.28);
  background: linear-gradient(160deg, rgba(17, 18, 32, 0.92), rgba(11, 12, 22, 0.96));
}

.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: center;
}

.page-hero-content h1,
.page-hero-content p {
  margin-bottom: 0.9rem;
}

.page-hero-image {
  display: flex;
  justify-content: flex-end;
}

.page-hero-image img {
  width: 100%;
  max-height: 350px;
  min-height: 240px;
  object-fit: contain;
  object-position: center;
  border-radius: 1rem;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(8, 10, 14, 0.05), rgba(18, 22, 31, 0.15));
}

@media (min-width: 980px) {
  .page-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
    gap: 2rem;
    align-items: center;
  }

  .page-hero h1 {
    max-width: 38ch;
  }
}

.page-hero h1 {
  max-width: 20ch;
  color: var(--gold-600);
}

.page-hero p,
.breadcrumb {
  color: var(--text-700);
}

.products-page {
  position: relative;
}

.products-page .products-hero {
  border-bottom-color: rgba(231, 198, 115, 0.28);
  background:
    radial-gradient(120% 140% at 6% 0%, rgba(212, 175, 55, 0.2), transparent 45%),
    radial-gradient(90% 120% at 100% 100%, rgba(45, 83, 168, 0.16), transparent 52%),
    linear-gradient(160deg, rgba(17, 18, 32, 0.94), rgba(11, 12, 22, 0.98));
}

.products-page .products-hero-inner {
  max-width: 66rem;
  display: grid;
  gap: 1.05rem;
}

.products-page .products-hero h1 {
  max-width: 26ch;
  font-size: clamp(1.95rem, 4.3vw, 3.1rem);
  line-height: 1.1;
  text-wrap: balance;
}

.products-page .products-hero p {
  max-width: 64ch;
}

.products-page .products-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  max-width: 42rem;
  margin-top: 0.45rem;
}

.products-page .products-hero-stat {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 0.62rem 0.74rem;
  background: linear-gradient(145deg, rgba(13, 21, 42, 0.62), rgba(11, 14, 27, 0.45));
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.3);
  display: grid;
  gap: 0.2rem;
}

.products-page .products-hero-stat strong {
  font-size: clamp(1rem, 2.1vw, 1.28rem);
  color: #f3ddb0;
  font-weight: 800;
  line-height: 1;
}

.products-page .products-hero-stat span {
  color: rgba(230, 238, 255, 0.85);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.products-page .products-categories {
  padding-top: 1.2rem;
}

.products-page .category-grid {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0.8rem;
}

.products-page .category-card {
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 14px;
  padding: 0.8rem 0.92rem;
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(212, 175, 55, 0.16), transparent 44%),
    linear-gradient(160deg, rgba(20, 23, 36, 0.96), rgba(11, 13, 22, 0.97));
  color: #edf3ff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.34);
}

.products-page .category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(237, 211, 143, 0.58);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.46);
}

.products-page .category-card.active,
.products-page .category-card:focus-visible {
  border-color: rgba(241, 218, 161, 0.74);
  box-shadow: 0 0 0 2px rgba(237, 210, 138, 0.22), 0 18px 34px rgba(0, 0, 0, 0.48);
}

.products-page .category-card strong {
  color: #f4f8ff;
  font-size: 0.9rem;
}

.products-page .category-card small {
  color: rgba(225, 236, 255, 0.72);
  font-weight: 600;
}

.products-page .products-catalog .tools-row {
  margin-bottom: 1.2rem;
  padding: 0.9rem;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(18, 24, 41, 0.78), rgba(12, 15, 28, 0.74));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.products-page .products-catalog .section-text {
  color: #dbe6fb;
  font-size: 0.95rem;
}

.products-page .products-results-pill {
  display: inline-flex;
  align-items: center;
  margin-left: 0.7rem;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(241, 218, 161, 0.45);
  background: rgba(241, 218, 161, 0.16);
  color: #f4dfb4;
  font-size: 0.78rem;
  font-weight: 700;
}

.products-page .tools-clear-link {
  margin-left: 0.65rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #f2d796;
}

.products-page .tools-clear-link:hover {
  color: #ffe8bb;
}

.products-page .search-field span {
  color: rgba(240, 225, 183, 0.9);
}

.products-page .search-field input {
  border-color: rgba(233, 211, 152, 0.25);
  background: rgba(13, 19, 34, 0.8);
  color: #f1f6ff;
}

.products-page .search-field input::placeholder {
  color: rgba(219, 231, 255, 0.55);
}

.products-page .search-field input:focus {
  border-color: rgba(241, 220, 167, 0.62);
  box-shadow: 0 0 0 3px rgba(241, 218, 161, 0.18);
}

.products-page .product-grid-catalog {
  gap: 1.2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.products-page .product-card-catalog {
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.27);
  background:
    radial-gradient(130% 120% at 100% 0%, rgba(212, 175, 55, 0.15), transparent 42%),
    linear-gradient(160deg, rgba(22, 27, 44, 0.95), rgba(12, 15, 26, 0.97));
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.38);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.products-page .product-card-catalog:hover {
  transform: translateY(-6px);
  border-color: rgba(239, 215, 150, 0.58);
  box-shadow: 0 25px 38px rgba(0, 0, 0, 0.45);
}

.products-page .product-card-catalog .product-media {
  margin: -1rem -1rem 0.9rem;
  border-bottom: 0;
  border-radius: 16px 16px 12px 12px;
  padding: 0.62rem;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.products-page .product-card-catalog .product-media-main {
  border-radius: 12px;
  border: 1px solid rgba(237, 212, 142, 0.22);
}

.products-page .product-card-catalog .product-media-main img {
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #fff;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), filter 320ms ease;
  padding: 0.5rem;
}

.products-page .product-card-catalog:hover .product-media-main img {
  transform: scale(1.05);
  filter: saturate(1.07) contrast(1.03);
}

.products-page .product-card-catalog .badge {
  background: linear-gradient(140deg, rgba(241, 220, 167, 0.24), rgba(241, 220, 167, 0.1));
  border: 1px solid rgba(241, 220, 167, 0.44);
  color: #efd8a8;
}

.products-page .product-card-catalog h3 {
  color: #f4f8ff;
}

.products-page .product-card-catalog .product-meta,
.products-page .product-card-catalog .product-summary {
  color: rgba(220, 231, 252, 0.88);
}

.products-page .product-card-catalog .product-summary {
  -webkit-line-clamp: 3;
  line-clamp: 3;
  min-height: 4.2em;
}

.products-page .product-card-catalog .product-meta span {
  color: rgba(241, 220, 167, 0.4);
}

.products-page .product-card-catalog .product-actions {
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(241, 220, 167, 0.2);
}

.products-page .product-card-catalog .product-actions .btn {
  width: 100%;
  justify-content: center;
}

/* Yeni Layout - Kategoriler Sol Tarafta */
.products-page .products-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: start;
}

.products-page .products-sidebar {
  position: sticky;
  top: 100px;
}

.products-page .sidebar-categories {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.products-page .category-card-sidebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 12px;
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(212, 175, 55, 0.14), transparent 44%),
    linear-gradient(160deg, rgba(22, 27, 44, 0.9), rgba(12, 15, 26, 0.92));
  cursor: pointer;
  transition: all 220ms ease;
  text-decoration: none;
  color: inherit;
}

.products-page .category-card-sidebar:hover {
  transform: translateX(4px);
  border-color: rgba(237, 211, 143, 0.58);
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(212, 175, 55, 0.18), transparent 44%),
    linear-gradient(160deg, rgba(30, 35, 55, 0.95), rgba(15, 18, 32, 0.97));
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35);
}

.products-page .category-card-sidebar.active {
  border-color: rgba(241, 218, 161, 0.74);
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(212, 175, 55, 0.25), transparent 44%),
    linear-gradient(160deg, rgba(40, 45, 70, 0.98), rgba(20, 25, 42, 0.99));
  box-shadow: 0 0 0 2px rgba(237, 210, 138, 0.22), 0 12px 28px rgba(0, 0, 0, 0.4);
}

.products-page .category-card-sidebar .category-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: #f4f8ff;
  flex: 1;
}

.products-page .category-card-sidebar .category-count {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.35), rgba(212, 175, 55, 0.2));
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.8rem;
  color: #f0dd9a;
}

.products-page .category-card-sidebar.active .category-count {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.55), rgba(212, 175, 55, 0.35));
  border-color: rgba(212, 175, 55, 0.6);
  color: #ffffff;
}

.products-page .products-main {
  display: flex;
  flex-direction: column;
}

.products-page .products-cta .cta-band {
  border-color: rgba(212, 175, 55, 0.42);
}

.breadcrumb a {
  color: var(--gold-700);
}


.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
  font-size: 0.82rem;
  color: var(--text-700);
}

.breadcrumb a {
  color: var(--blue-800);
  font-weight: 700;
}

.breadcrumb strong {
  color: var(--text-900);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.product-grid.preview {
  margin-top: 1rem;
}

.product-card.is-hidden {
  display: none;
}

.tools-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.filter-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.filter-btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.82rem;
  background: var(--surface);
  color: var(--text-700);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 180ms ease;
}

.filter-btn:hover {
  border-color: rgba(15, 88, 203, 0.34);
  color: var(--blue-800);
}

.filter-btn.active {
  background: linear-gradient(130deg, var(--blue-600), var(--blue-800));
  color: var(--white);
  border-color: transparent;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.category-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(160deg, rgba(33,33,33,0.2), rgba(0,0,0,0.04));
  padding: 0.7rem 0.8rem;
  text-align: left;
  color: var(--text-900);
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.6rem;
  align-items: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.category-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.15);
  border-color: var(--gold-500, #c19a6b);
}

.category-card.active,
.category-card:focus-visible {
  border-color: var(--gold-600, #b38748);
  box-shadow: 0 0 0 2px rgba(220,180,120,0.25);
}

.category-name {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.83rem;
  letter-spacing: 0.04em;
  color: var(--text-800);
}

.category-count {
  background: var(--gold-600, #b38748);
  color: var(--white);
  border-radius: 999px;
  min-width: 32px;
  text-align: center;
  font-weight: 700;
  padding: 0.2rem 0.45rem;
  font-size: 0.78rem;
}

.search-field {
  display: grid;
  gap: 0.35rem;
  min-width: 260px;
}

.search-field.full {
  min-width: 100%;
}

.search-field span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-700);
  font-weight: 800;
}

.search-field input {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.62rem 0.9rem;
  font: inherit;
  background: var(--surface);
}

.search-field input:focus {
  outline: none;
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(15, 88, 203, 0.14);
}

.empty-state {
  margin-top: 1rem;
  border: 1px dashed rgba(15, 88, 203, 0.35);
  border-radius: var(--radius-md);
  padding: 0.85rem;
  color: var(--text-700);
  background: rgba(255, 255, 255, 0.74);
}

.product-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  padding: 1.25rem;
}

.product-card-minimal {
  padding: 1rem;
  border-radius: 16px;
  box-shadow: 0 10px 22px rgba(10, 58, 145, 0.08);
}

.product-media {
  margin: -1.25rem -1.25rem 1rem;
  display: grid;
  gap: 0.55rem;
  border-bottom: 1px solid var(--line);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 0.55rem;
  background: #f8fbff;
}

.product-card-minimal .product-media {
  margin: -1rem -1rem 0.8rem;
}

.product-media-main {
  border: none;
  padding: 0;
  margin: 0;
  display: block;
  width: 100%;
  cursor: zoom-in;
  overflow: hidden;
  border-radius: 12px;
  background: transparent;
}

.product-media-main img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center;
  background-color: #fff;
  display: block;
  transition: transform 260ms ease;
  padding: 0.5rem;
}

.product-media-main img:empty {
  object-fit: cover;
}

.product-card:hover .product-media-main img {
  transform: scale(1.04);
}

.product-card-minimal:hover .product-media-main img {
  transform: none;
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.4rem;
}

.product-thumb {
  border: 1px solid transparent;
  border-radius: 9px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
}

.product-thumb img {
  width: 100%;
  height: 58px;
  object-fit: cover;
  display: block;
}

.product-thumb.active {
  border-color: rgba(15, 88, 203, 0.55);
}

.product-card h3 {
  margin-top: 0.7rem;
  font-size: 1.25rem;
}

.product-card-minimal h3 {
  font-size: 1.12rem;
}

.product-card p {
  margin-top: 0.65rem;
  color: var(--text-700);
}

.product-summary {
  display: -webkit-box;

  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3.05em;
}

.product-meta {
  font-size: 0.84rem;
  color: var(--blue-800);
  margin-top: 0.55rem;
}

.product-meta span {
  margin: 0 0.35rem;
  color: rgba(15, 88, 203, 0.4);
}

.product-card ul {
  margin-top: 0.85rem;
  display: grid;
  gap: 0.42rem;
}

.product-card li {
  font-size: 0.9rem;
  color: var(--text-700);
  position: relative;
  padding-left: 1.25rem;
}

.product-card li::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  left: 0;
  top: 0.52rem;
  background: var(--blue-700);
}

.product-actions {
  margin-top: 0.95rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.section-products-home .section-head h2 {
  max-width: 24ch;
  margin-inline: auto;
}

.section-products-home .product-grid.preview {
  margin-top: 1.5rem;
  gap: 1.2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section-products-home .product-card-showcase {
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(212, 175, 55, 0.12), transparent 40%),
    linear-gradient(160deg, rgba(24, 28, 44, 0.95), rgba(12, 14, 24, 0.96));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.38);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.section-products-home .product-card-showcase:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 221, 154, 0.55);
  box-shadow: 0 28px 45px rgba(0, 0, 0, 0.5);
}

.section-products-home .product-card-showcase .product-media {
  margin: -1rem -1rem 0.95rem;
  padding: 0.62rem;
  border-bottom: 0;
  border-radius: 18px 18px 14px 14px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.section-products-home .product-card-showcase .product-media-main {
  border-radius: 14px;
  border: 1px solid rgba(240, 221, 154, 0.2);
}

.section-products-home .product-card-showcase .product-media-main img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #0f1220;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), filter 320ms ease;
}

.section-products-home .product-card-showcase:hover .product-media-main img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.03);
}

.section-products-home .product-badge {
  margin-top: 0.2rem;
  background: linear-gradient(135deg, rgba(240, 221, 154, 0.24), rgba(240, 221, 154, 0.09));
  border: 1px solid rgba(240, 221, 154, 0.4);
  color: var(--gold-600);
  letter-spacing: 0.08em;
}

.section-products-home .product-title {
  margin-top: 0.78rem;
  font-size: clamp(1.16rem, 1.8vw, 1.35rem);
  min-height: 2.6em;
}

.section-products-home .product-meta-inline {
  margin-top: 0.5rem;
  color: var(--gold-700);
  font-size: 0.8rem;
}

.section-products-home .product-summary {
  margin-top: 0.62rem;
  color: var(--text-700);
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.section-products-home .product-actions-split {
  margin-top: 0.88rem;
  padding-top: 0.82rem;
  border-top: 1px solid rgba(240, 221, 154, 0.2);
}

.section-products-home .product-actions-split .btn {
  width: 100%;
  justify-content: center;
}

.btn-small {
  font-size: 0.82rem;
  padding: 0.55rem 0.9rem;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
  align-items: start;
}

.product-media-detail {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 0.65rem;
  background: #f8fbff;
}

.detail-main-frame {
  position: relative;
}

.detail-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(15, 88, 203, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--blue-800);
  font-size: 1.15rem;
  line-height: 1;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(10, 58, 145, 0.18);
  transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.detail-slider-arrow:hover {
  transform: translateY(-50%) scale(1.04);
  background: #fff;
  box-shadow: 0 14px 24px rgba(10, 58, 145, 0.22);
}

.detail-slider-arrow.prev {
  left: 0.8rem;
}

.detail-slider-arrow.next {
  right: 0.8rem;
}

.detail-slider-indicator {
  position: absolute;
  left: 50%;
  bottom: 0.75rem;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(10, 63, 154, 0.8);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.28rem 0.62rem;
}

.product-media-detail .product-media-main img {
  aspect-ratio: 16 / 11;
}

.product-detail-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  background: var(--surface);
  padding: 1.2rem;
}

.product-detail-panel h2 {
  margin-top: 0.7rem;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
}

.product-detail-panel h3 {
  margin-top: 0.95rem;
  font-size: 1.1rem;
}

.detail-spec-grid {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.detail-spec-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(150deg, #fff, #f4f8ff);
  padding: 0.7rem 0.75rem;
}

.detail-spec-card span {
  display: block;
  font-size: 0.74rem;
  color: var(--blue-700);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 800;
}

.detail-spec-card strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.93rem;
}

.detail-feature-list {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.45rem;
}

.detail-feature-list li {
  font-size: 0.92rem;
  color: var(--text-700);
  position: relative;
  padding-left: 1.2rem;
}

.detail-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-700);
}

.detail-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.product-detail-page {
  position: relative;
}

.product-detail-page .product-detail-hero {
  border-bottom-color: rgba(231, 198, 115, 0.3);
  background:
    radial-gradient(125% 160% at 6% 0%, rgba(212, 175, 55, 0.2), transparent 44%),
    radial-gradient(110% 150% at 100% 100%, rgba(55, 108, 214, 0.18), transparent 52%),
    linear-gradient(160deg, rgba(16, 18, 31, 0.95), rgba(10, 11, 20, 0.98));
}

.product-detail-page .product-detail-hero .breadcrumb {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.48rem;
  margin-bottom: 0.9rem;
  padding: 0.4rem 0.65rem;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 999px;
  background: rgba(11, 14, 28, 0.65);
}

.product-detail-page .detail-trust-strip {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.product-detail-page .detail-trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(240, 221, 154, 0.34);
  background: rgba(13, 19, 36, 0.86);
  color: rgba(236, 242, 255, 0.94);
  padding: 0.36rem 0.72rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.product-detail-page .detail-trust-strip span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f0d38f;
  box-shadow: 0 0 0 4px rgba(240, 211, 143, 0.2);
}

.product-detail-page .product-detail-main {
  padding-top: clamp(1.25rem, 2.2vw, 1.9rem);
}

.product-detail-page .detail-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 1.15rem;
}

.product-detail-page .product-media-detail {
  border-color: rgba(236, 213, 151, 0.32);
  border-radius: 18px;
  padding: 0.82rem;
  background:
    radial-gradient(140% 120% at 100% 0%, rgba(212, 175, 55, 0.15), transparent 45%),
    linear-gradient(158deg, rgba(19, 23, 38, 0.96), rgba(9, 11, 21, 0.98));
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.52);
}

.product-detail-page .detail-main-frame {
  border-radius: 14px;
  overflow: hidden;
  background: #090e1c;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.product-detail-page .product-media-detail .product-media-main {
  border-radius: 0;
  border: 0;
}

.product-detail-page .product-media-detail .product-media-main img {
  aspect-ratio: 16 / 10;
  width: 100%;
  object-fit: cover;
}

.product-detail-page .detail-slider-arrow {
  border-color: rgba(243, 219, 154, 0.34);
  background: rgba(9, 14, 28, 0.74);
  color: #f4ddaa;
  backdrop-filter: blur(6px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.45);
}

.product-detail-page .detail-slider-arrow:hover {
  background: rgba(12, 20, 38, 0.96);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.56);
}

.product-detail-page .detail-slider-indicator {
  background: rgba(8, 14, 28, 0.78);
  border: 1px solid rgba(240, 221, 154, 0.28);
  color: #f7e7be;
}

.product-detail-page .product-thumbs {
  margin-top: 0.72rem;
  gap: 0.45rem;
}

.product-detail-page .product-thumb {
  border-radius: 10px;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(7, 10, 20, 0.9);
}

.product-detail-page .product-thumb.active,
.product-detail-page .product-thumb:hover {
  border-color: rgba(241, 219, 157, 0.66);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.42);
}

.product-detail-page .product-detail-panel {
  border-color: rgba(241, 219, 157, 0.26);
  border-radius: 18px;
  background:
    radial-gradient(140% 130% at 100% 0%, rgba(212, 175, 55, 0.12), transparent 42%),
    linear-gradient(160deg, rgba(20, 23, 37, 0.95), rgba(12, 14, 24, 0.97));
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.48);
  padding: 1.2rem;
}

.product-detail-page .product-detail-panel .badge {
  color: #f0d18b;
  background: rgba(240, 209, 139, 0.14);
  border: 1px solid rgba(240, 209, 139, 0.34);
}

.product-detail-page .product-detail-panel h2 {
  color: #fff;
  margin-top: 0.72rem;
}

.product-detail-page .product-detail-panel .product-meta {
  margin-top: 0.52rem;
  color: rgba(223, 234, 255, 0.83);
}

.product-detail-page .detail-chip-row {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.product-detail-page .detail-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(241, 219, 157, 0.27);
  border-radius: 999px;
  padding: 0.3rem 0.62rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: rgba(239, 246, 255, 0.92);
  background: rgba(11, 17, 33, 0.85);
}

.product-detail-page .detail-kpi-grid {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.52rem;
}

.product-detail-page .detail-kpi-card {
  border: 1px solid rgba(241, 219, 157, 0.22);
  border-radius: 12px;
  background: linear-gradient(155deg, rgba(17, 22, 37, 0.94), rgba(9, 13, 24, 0.98));
  padding: 0.58rem 0.64rem;
}

.product-detail-page .detail-kpi-card span {
  display: block;
  font-size: 0.7rem;
  color: rgba(240, 209, 139, 0.86);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 800;
}

.product-detail-page .detail-kpi-card strong {
  display: block;
  margin-top: 0.28rem;
  color: #f5f8ff;
  font-size: 0.88rem;
}

.product-detail-page .detail-contact-card {
  margin-top: 0.92rem;
  border: 1px solid rgba(241, 219, 157, 0.24);
  border-radius: 14px;
  background: linear-gradient(155deg, rgba(17, 21, 35, 0.94), rgba(10, 14, 25, 0.98));
  padding: 0.78rem 0.82rem;
}

.product-detail-page .detail-contact-title {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f0d18b;
}

.product-detail-page .detail-contact-card p {
  margin-top: 0.4rem;
  color: rgba(223, 234, 255, 0.86);
  font-size: 0.86rem;
}

.product-detail-page .detail-contact-lines {
  margin-top: 0.52rem;
  display: grid;
  gap: 0.3rem;
}

.product-detail-page .detail-contact-lines a,
.product-detail-page .detail-contact-lines span {
  font-size: 0.82rem;
  color: rgba(240, 246, 255, 0.9);
}

.product-detail-page .detail-contact-lines a {
  text-decoration: underline;
  text-decoration-color: rgba(240, 221, 154, 0.45);
  text-underline-offset: 2px;
}

.product-detail-page .detail-contact-lines a:hover {
  color: #f7e7be;
  text-decoration-color: rgba(240, 221, 154, 0.8);
}

.product-detail-page .detail-spec-grid {
  margin-top: 0.95rem;
  gap: 0.6rem;
}

.product-detail-page .detail-spec-card {
  border-color: rgba(241, 219, 157, 0.22);
  border-radius: 12px;
  background: linear-gradient(150deg, rgba(19, 23, 38, 0.95), rgba(11, 15, 28, 0.97));
}

.product-detail-page .detail-spec-card span {
  color: rgba(240, 209, 139, 0.88);
}

.product-detail-page .detail-spec-card strong {
  color: #f5f8ff;
}

.product-detail-page .product-detail-panel h3 {
  color: #f4ddaa;
}

.product-detail-page .detail-feature-list li {
  color: rgba(224, 236, 255, 0.84);
}

.product-detail-page .detail-feature-list li::before {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: linear-gradient(160deg, #f0d38f, #d6a748);
}

.product-detail-page .product-detail-panel .product-actions {
  margin-top: 1rem;
  padding-top: 0.92rem;
  border-top: 1px solid rgba(241, 219, 157, 0.2);
}

.product-detail-page .product-detail-extra .glass-card {
  border-color: rgba(241, 219, 157, 0.3);
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(212, 175, 55, 0.1), transparent 40%),
    linear-gradient(160deg, rgba(17, 20, 34, 0.94), rgba(10, 12, 22, 0.96));
}

.product-detail-page .product-grid.preview {
  margin-top: 1.2rem;
  gap: 1rem;
}

.product-detail-page .product-grid.preview .product-card {
  border-color: rgba(241, 219, 157, 0.22);
  background:
    radial-gradient(130% 120% at 100% 0%, rgba(212, 175, 55, 0.1), transparent 42%),
    linear-gradient(160deg, rgba(19, 23, 38, 0.96), rgba(10, 13, 24, 0.97));
}

.product-detail-page .product-grid.preview .product-card h3,
.product-detail-page .product-grid.preview .product-card .product-meta,
.product-detail-page .product-grid.preview .product-card p {
  color: rgba(229, 238, 255, 0.9);
}

/* Minimal and modern override for product detail experience */
.product-detail-page .product-detail-hero {
  background: linear-gradient(180deg, rgba(12, 15, 24, 0.96), rgba(10, 13, 20, 0.98));
  border-bottom-color: rgba(255, 255, 255, 0.08);
  padding-top: clamp(1.05rem, 2.4vw, 1.75rem);
  padding-bottom: clamp(0.7rem, 1.8vw, 1.2rem);
}

.product-detail-page .product-detail-hero .breadcrumb {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

.product-detail-page .detail-trust-strip span {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(236, 242, 255, 0.9);
}

.product-detail-page .detail-trust-strip span::before {
  background: #9fb3d9;
  box-shadow: none;
}

.product-detail-page .detail-layout {
  gap: 1.4rem;
  align-items: start;
}

.product-detail-page .product-media-detail,
.product-detail-page .product-detail-panel,
.product-detail-page .product-detail-extra .glass-card {
  background: #121723;
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.product-detail-page .product-detail-panel {
  position: sticky;
  top: 5.2rem;
}

.product-detail-page .detail-main-frame {
  background: #0f1420;
  border-color: rgba(255, 255, 255, 0.12);
}

.product-detail-page .detail-slider-arrow {
  background: rgba(13, 20, 32, 0.86);
  border-color: rgba(255, 255, 255, 0.18);
  color: #d8e4ff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.26);
}

.product-detail-page .detail-slider-indicator {
  background: rgba(8, 12, 18, 0.82);
  border-color: rgba(255, 255, 255, 0.12);
  color: #e6eefc;
}

.product-detail-page .product-detail-panel .badge,
.product-detail-page .detail-chip,
.product-detail-page .detail-kpi-card,
.product-detail-page .detail-spec-card,
.product-detail-page .detail-contact-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.12);
}

.product-detail-page .detail-kpi-card span,
.product-detail-page .detail-spec-card span,
.product-detail-page .detail-contact-title {
  color: #a9bddf;
}

.product-detail-page .detail-score-row {
  margin-top: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.42rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
}

.product-detail-page .detail-score {
  display: inline-grid;
  place-items: center;
  min-width: 2.2rem;
  height: 1.8rem;
  border-radius: 0.55rem;
  background: #dcb454;
  color: #ecf3ff;
  font-size: 0.88rem;
  font-weight: 800;
}

.product-detail-page .detail-score-row span {
  color: rgba(222, 232, 248, 0.9);
  font-size: 0.8rem;
}

.product-detail-page .detail-offer-box {
  margin-top: 0.72rem;
  padding: 0.7rem 0.75rem;
  border-radius: 12px;
  border: 1px solid rgba(138, 184, 255, 0.34);
  background: linear-gradient(160deg, rgba(47, 72, 115, 0.32), rgba(29, 45, 72, 0.22));
}

.product-detail-page .detail-offer-title {
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #dbe8ff;
}

.product-detail-page .detail-offer-list {
  margin-top: 0.5rem;
  display: grid;
  gap: 0.36rem;
}

.product-detail-page .detail-offer-list li {
  position: relative;
  padding-left: 1rem;
  color: rgba(225, 237, 255, 0.88);
  font-size: 0.78rem;
}

.product-detail-page .detail-offer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9ec2ff;
}

.product-detail-page .detail-action-stack {
  margin-top: 0.85rem;
}

.product-detail-page .detail-action-stack .btn {
  width: 100%;
  justify-content: center;
}

.product-detail-page .detail-feature-list li::before {
  border-radius: 50%;
  width: 6px;
  height: 6px;
  background: #9bb2d9;
}

.product-detail-page .product-detail-panel .product-actions {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.product-detail-page .related-products .section-head {
  margin-bottom: 0.35rem;
}

.product-detail-page .related-products-grid {
  margin-top: 0.65rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.8rem;
}

.product-detail-page .related-product-card {
  padding: 0.75rem;
  border-radius: 14px;
  background: #121723;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.product-detail-page .related-product-card .product-media {
  margin: -0.75rem -0.75rem 0.65rem;
  padding: 0.5rem;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.product-detail-page .related-product-card .product-media-main {
  border-radius: 10px;
}

.product-detail-page .related-product-card .product-media-main img {
  aspect-ratio: 4 / 3;
}

.product-detail-page .related-product-card .badge {
  font-size: 0.64rem;
  padding: 0.24rem 0.5rem;
}

.product-detail-page .related-product-card h3 {
  margin-top: 0.55rem;
  font-size: 1rem;
  line-height: 1.3;
}

.product-detail-page .related-product-card p,
.product-detail-page .related-product-card .product-meta {
  margin-top: 0.48rem;
  font-size: 0.82rem;
  line-height: 1.45;
}

.product-detail-page .related-product-card .product-actions {
  margin-top: 0.65rem;
}

.product-detail-page .related-product-card .btn-small {
  width: 100%;
  padding: 0.48rem 0.74rem;
  font-size: 0.76rem;
}

.product-detail-page .product-reviews {
  padding-top: clamp(1.2rem, 2.3vw, 1.9rem);
}

.product-detail-page .review-layout {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 0.85rem;
}

.product-detail-page .review-summary {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  background: #121723;
  padding: 0.85rem;
  display: grid;
  gap: 0.35rem;
  align-content: start;
}

.product-detail-page .review-score {
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
  color: #edf3ff;
  line-height: 1;
}

.product-detail-page .review-stars {
  display: inline-flex;
  gap: 0.12rem;
}

.product-detail-page .review-stars .star {
  font-size: 0.95rem;
  color: rgba(183, 198, 225, 0.5);
}

.product-detail-page .review-stars .star.filled {
  color: #f3c44f;
}

.product-detail-page .review-summary p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(214, 227, 247, 0.86);
}

.product-detail-page .review-cta-wrap {
  margin-top: 0.5rem;
}

.product-detail-page .review-open-btn {
  width: 100%;
}

.product-detail-page .review-list {
  display: grid;
  gap: 0.6rem;
}

.product-detail-page .review-card {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 12px;
  background: #121723;
  padding: 0.72rem 0.8rem;
}

.product-detail-page .review-card header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.product-detail-page .review-card header strong {
  color: #edf3ff;
  font-size: 0.9rem;
}

.product-detail-page .review-card header span {
  color: rgba(201, 216, 240, 0.8);
  font-size: 0.74rem;
}

.product-detail-page .review-card p {
  margin-top: 0.42rem;
  margin-bottom: 0;
  color: rgba(214, 227, 247, 0.9);
  font-size: 0.84rem;
  line-height: 1.5;
}

.product-detail-page .review-form-panel {
  margin-top: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: #121723;
  padding: 0.88rem;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
}

.product-detail-page .review-form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  margin-bottom: 0.75rem;
}

.product-detail-page .review-form-head h3 {
  font-size: 1.02rem;
  color: #edf3ff;
}

.product-detail-page .review-close-btn {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(219, 231, 250, 0.9);
  font-weight: 700;
  cursor: pointer;
  padding: 0.36rem 0.8rem;
}

.product-detail-page .review-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.product-detail-page .review-label {
  display: grid;
  gap: 0.34rem;
  font-size: 0.82rem;
  color: rgba(212, 225, 247, 0.9);
  font-weight: 600;
}

.product-detail-page .review-label input,
.product-detail-page .review-label select,
.product-detail-page .review-label textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(14, 20, 34, 0.92);
  color: #edf3ff;
  padding: 0.6rem 0.72rem;
  font: inherit;
}

.product-detail-page .review-label textarea {
  resize: vertical;
  min-height: 110px;
}

.product-detail-page .review-label input:focus,
.product-detail-page .review-label select:focus,
.product-detail-page .review-label textarea:focus {
  outline: none;
  border-color: rgba(241, 211, 132, 0.75);
  box-shadow: 0 0 0 3px rgba(214, 176, 90, 0.2);
}

.product-detail-page .review-label.full,
.product-detail-page .review-form-actions.full {
  grid-column: 1 / -1;
}

.product-detail-page .review-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.product-detail-page .detail-media-label {
  margin-top: 0.62rem;
  margin-bottom: 0;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(212, 224, 247, 0.86);
}

.product-detail-page .detail-media-content {
  margin-top: 0.42rem;
  display: grid;
  gap: 0.44rem;
}

.product-detail-page .detail-media-content h1 {
  font-size: clamp(1.3rem, 2.25vw, 1.82rem);
  line-height: 1.15;
  color: #eef4ff;
}

.product-detail-page .detail-media-content p {
  margin: 0;
  color: rgba(222, 233, 248, 0.9);
}

.product-detail-page .detail-media-content .section-text {
  color: rgba(205, 221, 244, 0.86);
}

.product-detail-page .detail-media-content .detail-trust-strip {
  margin-top: 0.38rem;
}

.product-detail-page .related-product-desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.7em;
}

html[data-theme="light"] .product-detail-page .product-detail-hero {
  background: linear-gradient(180deg, #ffffff, #f6f9ff) !important;
  border-bottom-color: var(--line) !important;
}

html[data-theme="light"] .product-detail-page .product-media-detail,
html[data-theme="light"] .product-detail-page .product-detail-panel,
html[data-theme="light"] .product-detail-page .product-detail-extra .glass-card,
html[data-theme="light"] .product-detail-page .related-product-card,
html[data-theme="light"] .product-detail-page .review-summary,
html[data-theme="light"] .product-detail-page .review-card {
  background: #ffffff !important;
  border-color: var(--line) !important;
  box-shadow: 0 8px 18px rgba(31, 48, 74, 0.1) !important;
}

html[data-theme="light"] .product-detail-page .detail-chip,
html[data-theme="light"] .product-detail-page .detail-kpi-card,
html[data-theme="light"] .product-detail-page .detail-spec-card,
html[data-theme="light"] .product-detail-page .detail-contact-card,
html[data-theme="light"] .product-detail-page .detail-trust-strip span,
html[data-theme="light"] .product-detail-page .product-detail-hero .breadcrumb {
  background: #f6f9ff !important;
  border-color: var(--line) !important;
}

html[data-theme="light"] .product-detail-page .detail-score-row,
html[data-theme="light"] .product-detail-page .detail-offer-box {
  background: #f6f9ff !important;
  border-color: rgba(37, 64, 102, 0.22) !important;
}

html[data-theme="light"] .product-detail-page .detail-media-label {
  color: var(--blue-800) !important;
}

html[data-theme="light"] .product-detail-page .detail-media-content h1,
html[data-theme="light"] .product-detail-page .detail-media-content p,
html[data-theme="light"] .product-detail-page .detail-media-content .section-text {
  color: var(--text-900) !important;
}

html[data-theme="light"] .product-detail-page .detail-score {
  background: #2f639f !important;
  color: #ffffff !important;
}

html[data-theme="light"] .product-detail-page .detail-score-row span,
html[data-theme="light"] .product-detail-page .detail-offer-title,
html[data-theme="light"] .product-detail-page .detail-offer-list li {
  color: var(--text-900) !important;
}

html[data-theme="light"] .product-detail-page .review-score,
html[data-theme="light"] .product-detail-page .review-card header strong,
html[data-theme="light"] .product-detail-page .review-card p,
html[data-theme="light"] .product-detail-page .review-summary p,
html[data-theme="light"] .product-detail-page .review-card header span {
  color: var(--text-900) !important;
}

html[data-theme="light"] .product-detail-page .review-form-panel,
html[data-theme="light"] .product-detail-page .review-close-btn {
  background: #ffffff !important;
  border-color: var(--line) !important;
  color: var(--text-900) !important;
}

html[data-theme="light"] .product-detail-page .review-form-head h3,
html[data-theme="light"] .product-detail-page .review-label {
  color: var(--text-900) !important;
}

html[data-theme="light"] .product-detail-page .review-label input,
html[data-theme="light"] .product-detail-page .review-label select,
html[data-theme="light"] .product-detail-page .review-label textarea {
  background: #ffffff !important;
  border-color: var(--line) !important;
  color: var(--text-900) !important;
}

html[data-theme="light"] .product-detail-page .review-stars .star {
  color: rgba(37, 64, 102, 0.35) !important;
}

html[data-theme="light"] .product-detail-page .review-stars .star.filled {
  color: #c88f1d !important;
}

.badge {
  display: inline-flex;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  border-radius: 999px;
  color: var(--blue-800);
  background: rgba(15, 88, 203, 0.1);
  padding: 0.32rem 0.68rem;
}

.section-action {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

.gallery-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-grid.large {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-card {
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(12, 14, 26, 0.95);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.65);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.gallery-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 215, 0, 0.8);
  box-shadow: 0 26px 46px rgba(0, 0, 0, 0.65);
}

.gallery-zoom {
  border: none;
  padding: 0;
  margin: 0;
  width: 100%;
  cursor: zoom-in;
  background: transparent;
  display: block;
  position: relative;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 12, 20, 0.2), rgba(10, 12, 20, 0.7));
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.gallery-card:hover::after {
  opacity: 1;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 300ms ease;
}

.gallery-card:hover img {
  transform: scale(1.03);
}

.image-count-badge {
  position: absolute;
  right: 0.85rem;
  top: 0.85rem;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.95);
  color: #1b0e00;
  padding: 0.25rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
}

.product-card .product-media {
  position: relative;
}

.gallery-caption {
  padding: 0.9rem;
}

.gallery-caption h3 {
  font-size: 1.1rem;
}

.gallery-caption p {
  margin-top: 0.45rem;
  color: var(--text-700);
  font-size: 0.9rem;
}

.gallery-page {
  background:
    radial-gradient(circle at 12% -6%, rgba(214, 168, 78, 0.12), transparent 36%),
    radial-gradient(circle at 86% 10%, rgba(74, 130, 245, 0.11), transparent 34%),
    var(--bg);
}

.gallery-page .page-hero {
  padding-bottom: 1.2rem;
}

.gallery-page .page-hero-inner {
  align-items: center;
  gap: 1.3rem;
}

.gallery-page .page-hero-content h1 {
  font-size: clamp(2rem, 4.9vw, 3.55rem);
  line-height: 1.08;
  max-width: 20ch;
}

.gallery-page .page-hero-content p {
  max-width: 62ch;
}

.blog-featured {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 1rem;
  background: linear-gradient(140deg, rgba(17, 20, 40, 0.88), rgba(11, 13, 24, 0.88));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.blog-featured-media img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.blog-featured-content {
  padding: 1.15rem;
  display: grid;
  align-content: start;
  gap: 0.7rem;
}

.blog-featured-content h2 {
  font-size: clamp(1.45rem, 2.6vw, 2rem);
}

.blog-meta {
  color: var(--text-700);
  font-size: 0.92rem;
  margin: 0;
}

.blog-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.blog-news-card {
  background: linear-gradient(180deg, rgba(17, 20, 40, 0.85), rgba(12, 14, 24, 0.88));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.blog-news-card-image {
  display: block;
}

.blog-news-card-image img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.blog-news-card-body {
  padding: 0.95rem;
}

.blog-news-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  margin-top: 0.85rem;
  color: var(--gold-700);
  font-weight: 700;
}

.blog-post-hero {
  padding-bottom: 0;
}

.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.7rem;
}

.blog-post-meta span {
  font-size: 0.82rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.24rem 0.58rem;
  color: var(--text-700);
}

.blog-post-cover {
  margin: 1.2rem 0 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

.blog-post-cover img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  display: block;
}

.blog-article {
  padding: clamp(1.1rem, 2.5vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(17, 20, 40, 0.9), rgba(10, 12, 20, 0.9));
  box-shadow: var(--shadow-card);
}

.blog-article h2,
.blog-article h3,
.blog-article h4 {
  margin: 1.25rem 0 0.75rem;
}

.blog-article p,
.blog-article li {
  color: var(--text-900);
}

.blog-article img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

html[data-theme="light"] .blog-featured,
html[data-theme="light"] .blog-news-card,
html[data-theme="light"] .blog-article {
  background: linear-gradient(170deg, #ffffff, #f5f8ff);
}

@media (max-width: 980px) {
  .blog-featured {
    grid-template-columns: 1fr;
  }

  .blog-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .blog-news-grid {
    grid-template-columns: 1fr;
  }

  .blog-featured-media img {
    min-height: 220px;
  }
}

.gallery-page .page-hero-image {
  border: 1px solid rgba(212, 175, 55, 0.36);
  background:
    radial-gradient(circle at 18% 16%, rgba(212, 175, 55, 0.2), transparent 46%),
    linear-gradient(155deg, rgba(16, 20, 38, 0.9), rgba(8, 11, 23, 0.95));
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.48);
}

.gallery-page-showcase {
  padding-top: 0.4rem;
}

.gallery-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.gallery-toolbar-copy h2 {
  margin: 0.4rem 0 0;
  color: var(--white);
  font-size: clamp(1.35rem, 2.8vw, 2.05rem);
  line-height: 1.18;
}

.gallery-toolbar-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
}

.gallery-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.36);
  background: rgba(15, 18, 32, 0.82);
  color: rgba(243, 247, 255, 0.94);
  padding: 0.44rem 0.8rem;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.gallery-pill-muted {
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(217, 227, 246, 0.86);
}

.gallery-page .gallery-grid.large {
  margin-top: 1.1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.gallery-page .gallery-card-premium {
  border-radius: 20px;
  border-color: rgba(212, 175, 55, 0.35);
  background:
    radial-gradient(circle at 100% 0%, rgba(212, 175, 55, 0.16), transparent 40%),
    linear-gradient(160deg, rgba(18, 21, 38, 0.96), rgba(8, 11, 22, 0.98));
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.56);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 280ms ease, border-color 240ms ease;
}

.gallery-page .gallery-card-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.08) 45%, transparent 70%);
  opacity: 0;
  transform: translateX(-34%);
  transition: opacity 260ms ease, transform 420ms ease;
  pointer-events: none;
  z-index: 1;
}

.gallery-page .gallery-card-premium:hover {
  transform: translateY(-8px);
  border-color: rgba(241, 211, 132, 0.8);
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.62);
}

.gallery-page .gallery-card-premium:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.gallery-page .gallery-card-premium .gallery-zoom {
  position: relative;
}

.gallery-page .gallery-card-premium .gallery-zoom::after {
  content: "Incele";
  position: absolute;
  right: 0.85rem;
  top: 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(8, 13, 26, 0.62);
  color: rgba(247, 250, 255, 0.96);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.35rem 0.64rem;
  backdrop-filter: blur(5px);
  z-index: 2;
}

.gallery-page .gallery-card-premium img {
  aspect-ratio: 5 / 4;
  transition: transform 480ms cubic-bezier(0.22, 1, 0.36, 1), filter 300ms ease;
}

.gallery-page .gallery-card-premium:hover img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.06);
}

.gallery-page .gallery-card-premium .gallery-caption {
  padding: 1rem 1rem 1.05rem;
}

.gallery-page .gallery-card-premium .gallery-caption h3 {
  color: var(--white);
  font-size: 1.08rem;
  line-height: 1.24;
}

.gallery-page .gallery-card-premium .gallery-caption p {
  margin-top: 0.5rem;
  color: rgba(208, 221, 244, 0.84);
  font-size: 0.91rem;
  line-height: 1.5;
}

.gallery-caption h3 {
  color: var(--white);
}

.image-count-badge {
  background: rgba(212, 175, 55, 0.9);
}

.section-head h2,
.page-hero h1,
.cta-band h2 {
  color: var(--white);
}

.section-head p,
.page-hero p,
.section-text,
.footer-grid p,
.footer-bottom p,
.footer-list a {
  color: var(--text-700);
}

.table-wrap {
  margin-top: 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: auto;
  box-shadow: var(--shadow-card);
  background: var(--surface);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 670px;
}

th,
td {
  text-align: left;
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 1rem;
  font-size: 0.92rem;
}

th {
  color: var(--blue-800);
  background: rgba(15, 88, 203, 0.08);
  font-weight: 800;
}

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

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.about-page .about-hero {
  border-bottom-color: rgba(231, 198, 115, 0.34);
  background:
    radial-gradient(95% 120% at 8% 0%, rgba(212, 175, 55, 0.2), transparent 45%),
    radial-gradient(70% 120% at 100% 100%, rgba(53, 91, 173, 0.18), transparent 52%),
    linear-gradient(160deg, rgba(17, 18, 32, 0.95), rgba(10, 11, 20, 0.98));
}

.about-page .page-hero-content h1 {
  font-size: clamp(2rem, 4.8vw, 3.35rem);
  line-height: 1.08;
  max-width: 22ch;
  text-wrap: balance;
}

.about-page .page-hero-content > p {
  max-width: 62ch;
}

.about-page .about-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.55rem;
}

.about-page .about-hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(231, 198, 115, 0.45);
  background: rgba(12, 14, 25, 0.75);
  color: #f4e3b8;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.4rem 0.72rem;
}

.about-page .about-hero-media {
  position: relative;
  width: 100%;
  min-height: clamp(270px, 42vw, 420px);
  border-radius: 1rem;
  border: 1px solid rgba(231, 198, 115, 0.38);
  overflow: hidden;
  box-shadow: 0 24px 38px rgba(0, 0, 0, 0.45);
  isolation: isolate;
}

.about-page .about-hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(6, 8, 14, 0.14), rgba(6, 8, 14, 0.48)),
    radial-gradient(100% 58% at 50% 100%, rgba(212, 175, 55, 0.22), transparent 70%);
}

.about-page .about-hero-slider-track {
  position: absolute;
  inset: 0;
}

.about-page .about-hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 600ms ease, transform 1500ms ease;
}

.about-page .about-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.03);
}

.about-page .about-hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.about-page .about-hero-slide.is-active img {
  animation: about-kenburns 7000ms ease-out both;
}

.about-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(231, 198, 115, 0.5);
  border-radius: 999px;
  background: rgba(7, 10, 18, 0.62);
  color: #f2e1b7;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  z-index: 3;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.about-slider-nav svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-slider-nav:hover {
  transform: translateY(-50%) scale(1.04);
  border-color: rgba(244, 222, 165, 0.92);
  background: rgba(7, 10, 18, 0.86);
}

.about-slider-prev {
  left: 0.8rem;
}

.about-slider-next {
  right: 0.8rem;
}

.about-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 0.9rem;
  transform: translateX(-50%);
  display: inline-flex;
  gap: 0.42rem;
  z-index: 3;
}

.about-slider-dot {
  width: 0.58rem;
  height: 0.58rem;
  border: 1px solid rgba(246, 233, 192, 0.72);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  padding: 0;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease;
}

.about-slider-dot.is-active {
  background: #efce79;
  transform: scale(1.16);
}

@keyframes about-kenburns {
  0% {
    transform: scale(1.06);
  }
  100% {
    transform: scale(1);
  }
}

.about-page .about-kpis {
  padding-top: 1.1rem;
}

.about-page .about-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.about-page .about-kpi-card {
  border: 1px solid rgba(212, 175, 55, 0.36);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(15, 17, 30, 0.92), rgba(9, 11, 19, 0.96));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5);
  padding: 1rem 1rem;
}

.about-page .about-kpi-card span {
  display: block;
  color: var(--gold-600);
  font-size: clamp(1.35rem, 2.9vw, 2rem);
  font-weight: 800;
  line-height: 1;
}

.about-page .about-kpi-card p {
  margin-top: 0.5rem;
  color: var(--text-700);
  font-size: 0.88rem;
}

.about-page .about-intro .glass-card,
.about-page .about-expertise .service-card,
.about-page .about-timeline-wrap .timeline-step,
.about-page .about-metrics .about-metric-card {
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.about-page .about-intro .glass-card {
  background: linear-gradient(145deg, rgba(15, 18, 32, 0.93), rgba(9, 11, 21, 0.95));
}

.about-page .about-intro .glass-card:hover,
.about-page .about-expertise .service-card:hover,
.about-page .about-timeline-wrap .timeline-step:hover,
.about-page .about-metrics .about-metric-card:hover {
  transform: translateY(-6px);
  border-color: rgba(231, 198, 115, 0.62);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.52);
}

.about-page .about-workflow .showcase-surface {
  min-height: 370px;
  background:
    radial-gradient(circle at 78% 22%, rgba(212, 175, 55, 0.3), transparent 42%),
    radial-gradient(circle at 24% 90%, rgba(65, 113, 212, 0.26), transparent 46%),
    linear-gradient(140deg, rgba(17, 20, 36, 0.94), rgba(9, 11, 20, 0.98));
  border-color: rgba(231, 198, 115, 0.35);
}

.about-page .about-workflow .showcase-note {
  background: rgba(12, 14, 25, 0.58);
  border-color: rgba(231, 198, 115, 0.5);
}

.about-page .about-workflow .showcase-note p {
  font-size: 1.2rem;
}

.about-page .about-timeline-wrap .timeline {
  gap: 1.05rem;
}

.about-page .about-timeline-wrap .timeline-step span {
  background: rgba(212, 175, 55, 0.16);
  color: #f1d792;
}

.about-page .about-metrics .about-metric-grid {
  margin-top: 1.05rem;
}

.about-page .about-metrics .about-metric-card {
  border-color: rgba(212, 175, 55, 0.34);
  background: linear-gradient(160deg, rgba(14, 16, 30, 0.94), rgba(9, 10, 18, 0.98));
}

.about-page .about-metrics .about-metric-card p {
  color: var(--text-700);
}

.about-page .about-metrics .about-metric-card h3 {
  color: var(--gold-600);
}

.glass-card {
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-lg);
  background: rgba(19, 22, 42, 0.87);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.55);
  padding: 1.3rem;
}

.glass-card h3 {
  font-size: 1.4rem;
  color: var(--gold-600);
}

.glass-card p:last-child {
  margin-top: 0.7rem;
  color: var(--text-700);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.value-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  padding: 1.2rem;
  transition: transform 220ms ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-card h3 {
  font-size: 1.2rem;
}

.value-card p {
  margin-top: 0.6rem;
  color: var(--text-700);
}

.timeline {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.timeline-step {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.15rem 1rem;
  background: var(--surface);
}

.timeline-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.9rem;
  width: 0.9rem;
  height: 1px;
  background: rgba(15, 88, 203, 0.32);
}

.timeline-step span {
  display: inline-flex;
  font-size: 0.78rem;
  border-radius: 999px;
  padding: 0.25rem 0.52rem;
  color: var(--blue-800);
  background: rgba(15, 88, 203, 0.1);
  font-weight: 800;
}

.timeline-step h3 {
  margin-top: 0.65rem;
  font-size: 1.15rem;
}

.timeline-step p {
  margin-top: 0.48rem;
  color: var(--text-700);
  font-size: 0.9rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.team-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  padding: 1.2rem;
}

.team-card h3 {
  font-size: 1.2rem;
}

.team-card p {
  margin-top: 0.6rem;
  color: var(--text-700);
}

.faq-layout {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: clip;
  background: var(--surface);
}

.faq-item.is-hidden {
  display: none;
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  color: var(--text-900);
  font: inherit;
  font-weight: 700;
  text-align: left;
  padding: 1rem 1.1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
}

.faq-question::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--blue-700);
  transition: transform 220ms ease;
}

.faq-question[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease;
}

.faq-answer p {
  color: var(--text-700);
  padding: 0 1.1rem 1rem;
}

.contact-page {
  background:
    radial-gradient(circle at 10% -5%, rgba(214, 170, 80, 0.12), transparent 38%),
    radial-gradient(circle at 88% 12%, rgba(66, 119, 224, 0.12), transparent 36%),
    var(--bg);
}

.contact-page .contact-hero {
  border-bottom-color: rgba(231, 198, 115, 0.3);
  background:
    radial-gradient(110% 130% at 5% 0%, rgba(212, 175, 55, 0.2), transparent 45%),
    radial-gradient(85% 120% at 100% 100%, rgba(54, 94, 176, 0.16), transparent 52%),
    linear-gradient(160deg, rgba(17, 18, 32, 0.94), rgba(10, 11, 20, 0.98));
}

.contact-page .page-hero-content h1 {
  font-size: clamp(2rem, 4.9vw, 3.45rem);
  line-height: 1.08;
  max-width: 18ch;
}

.contact-page .page-hero-content > p {
  max-width: 62ch;
}

.contact-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.55rem;
}

.contact-hero-points span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(231, 198, 115, 0.45);
  background: rgba(12, 14, 25, 0.75);
  color: #f4e3b8;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.4rem 0.72rem;
}

.contact-hero-panel {
  justify-content: flex-end;
}

.contact-hero-panel-inner {
  width: min(100%, 30rem);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(212, 175, 55, 0.38);
  background:
    radial-gradient(circle at 80% 0%, rgba(212, 175, 55, 0.14), transparent 46%),
    linear-gradient(150deg, rgba(17, 20, 36, 0.95), rgba(9, 11, 22, 0.98));
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.55);
  padding: 1.1rem 1.15rem;
}

.contact-hero-panel-inner h3 {
  color: var(--white);
  margin: 0;
  font-size: clamp(1.08rem, 2.2vw, 1.32rem);
}

.contact-hero-panel-inner p {
  margin-top: 0.46rem;
  color: var(--text-700);
  font-size: 0.93rem;
}

.contact-hero-list {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.42rem;
}

.contact-hero-list li {
  color: rgba(229, 238, 251, 0.92);
  font-size: 0.9rem;
}

.contact-hero-list a {
  color: #f4e7bc;
  font-weight: 700;
}

.contact-page-section {
  padding-top: 0.9rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.2rem;
  align-items: start;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.contact-card {
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-lg);
  padding: 1rem 1.02rem;
  background:
    radial-gradient(circle at 90% -10%, rgba(212, 175, 55, 0.12), transparent 44%),
    linear-gradient(145deg, rgba(16, 20, 36, 0.94), rgba(9, 12, 23, 0.97));
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.48);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(241, 211, 132, 0.74);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.58);
}

.contact-card h3 {
  font-size: 1.04rem;
  color: var(--white);
}

.contact-card p {
  margin-top: 0.48rem;
  color: rgba(208, 221, 244, 0.84);
  font-size: 0.91rem;
}

/* Yeni İletişim Layout */
.contact-layout-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-left {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 1.5rem;
}

.contact-map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.48);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: none;
}

.contact-info-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.contact-info-item {
  padding: 1rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  background:
    radial-gradient(circle at 90% -10%, rgba(212, 175, 55, 0.12), transparent 44%),
    linear-gradient(145deg, rgba(16, 20, 36, 0.94), rgba(9, 12, 23, 0.97));
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.48);
}

.contact-info-item h4 {
  margin: 0 0 0.5rem 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}

.contact-info-item p {
  margin: 0;
  color: rgba(208, 221, 244, 0.84);
  font-size: 0.9rem;
}

.contact-info-item a {
  color: var(--gold-700);
  font-weight: 600;
  transition: color 180ms ease;
}

.contact-info-item a:hover {
  color: var(--gold-600);
}

.contact-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}



.contact-card a {
  color: #f4e3b8;
  font-weight: 700;
}

.contact-form-intro {
  margin-bottom: 0.82rem;
}

.contact-form-intro h2 {
  color: var(--white);
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  line-height: 1.18;
}

.contact-form-intro p {
  margin-top: 0.42rem;
  color: var(--text-700);
  font-size: 0.92rem;
}

.contact-form {
  border: 1px solid rgba(212, 175, 55, 0.36);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 100% 0%, rgba(212, 175, 55, 0.12), transparent 45%),
    linear-gradient(155deg, rgba(16, 20, 38, 0.94), rgba(8, 11, 23, 0.98));
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.56);
  padding: 1.35rem;
  display: grid;
  gap: 0.68rem;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form label {
  font-size: 0.86rem;
  font-weight: 700;
  color: rgba(226, 235, 250, 0.92);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(190, 207, 236, 0.2);
  border-radius: 12px;
  padding: 0.76rem 0.88rem;
  font: inherit;
  color: #edf3ff;
  background: rgba(12, 16, 30, 0.78);
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(180, 197, 227, 0.72);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(241, 211, 132, 0.75);
  background: rgba(15, 19, 34, 0.88);
  box-shadow: 0 0 0 3px rgba(214, 176, 90, 0.22);
}

.notice {
  border-radius: 14px;
  border: 1px solid rgba(235, 245, 255, 0.18);
  padding: 0.88rem 0.96rem;
  margin-bottom: 0.84rem;
  font-size: 0.9rem;
}

.notice.success {
  border-color: rgba(18, 140, 89, 0.36);
  background: rgba(18, 140, 89, 0.08);
  color: #0b6a42;
}

.notice.error {
  border-color: rgba(176, 45, 45, 0.33);
  background: rgba(176, 45, 45, 0.07);
  color: #812a2a;
}

.notice-list {
  margin-top: 0.48rem;
  list-style: disc;
  padding-left: 1.2rem;
}

.site-footer {
  margin-top: clamp(2rem, 5vw, 3rem);
  border-top: 1px solid rgba(212, 175, 55, 0.35);
  background: rgba(6, 8, 16, 0.98);
  color: var(--text-900);
  padding-top: 1.7rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr;
  gap: 1.2rem;
  padding-bottom: 1.3rem;
}

.footer-grid h3,
.footer-grid h4 {
  font-size: 1.1rem;
  color: var(--white);
}

.footer-grid p {
  margin-top: 0.55rem;
  color: var(--text-700);
}

.footer-logo {
  width: 96px;
  height: 96px;
  object-fit: contain;
  display: block;
  margin-bottom: 0.5rem;
  padding: 0.3rem;
  border-radius: 14px;
  background: rgba(17, 19, 34, 0.86);
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.footer-list {
  margin-top: 0.45rem;
  display: grid;
  gap: 0.36rem;
}

.footer-list a {
  color: var(--gold-700);
  transition: color 180ms ease;
}

.footer-list a:hover {
  color: var(--gold-600);
}

.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.28);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.86rem;
  color: var(--text-700);
  padding: 0.95rem 0 1.2rem;
}

.footer-bottom a {
  color: var(--gold-700);
}

.footer-bottom a:hover {
  color: var(--gold-600);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.86rem;
  color: var(--text-700);
  padding: 0.95rem 0 1.2rem;
}

.footer-bottom a {
  color: var(--blue-800);
  font-weight: 700;
}

.back-top {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(15, 88, 203, 0.28);
  border-radius: 12px;
  background: var(--white);
  color: var(--blue-800);
  box-shadow: var(--shadow-card);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
  z-index: 24;
}

.back-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(0.7rem, 2.2vw, 1.4rem);
  background:
    radial-gradient(circle at 16% 12%, rgba(214, 168, 78, 0.16), transparent 42%),
    radial-gradient(circle at 84% 78%, rgba(58, 130, 246, 0.15), transparent 40%),
    rgba(3, 7, 18, 0.92);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
  z-index: 92;
}

.lightbox.show {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-shell {
  position: relative;
  width: min(100%, 1240px);
  max-height: min(92vh, 980px);
  padding: clamp(0.75rem, 1.8vw, 1.2rem);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(155deg, rgba(10, 18, 38, 0.86), rgba(7, 13, 28, 0.9));
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.55);
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 0.7rem;
  overflow: hidden;
}

.lightbox-figure {
  margin: 0;
  min-height: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 0.65rem;
}

.lightbox-figure img {
  width: 100%;
  height: 100%;
  max-height: min(75vh, 860px);
  object-fit: contain;
  border-radius: 14px;
  background: radial-gradient(circle at 50% 35%, #1b2a4a 0%, #090f20 70%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  filter: saturate(1.07) contrast(1.04);
  transform: translateY(8px) scale(0.992);
  opacity: 0.2;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), opacity 360ms ease;
}

.lightbox.show .lightbox-figure img {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.lightbox-figure figcaption {
  margin: 0;
  padding: 0.65rem 0.8rem;
  border-radius: 10px;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  color: rgba(242, 247, 255, 0.95);
  background: rgba(7, 15, 31, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
}

.lightbox-meta {
  display: flex;
  justify-content: flex-start;
}

.lightbox-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(244, 248, 255, 0.95);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lightbox-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  font-size: 1.45rem;
  line-height: 1;
  color: rgba(247, 250, 255, 0.95);
  background: rgba(14, 23, 43, 0.72);
  backdrop-filter: blur(7px);
  cursor: pointer;
  z-index: 98;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  transform: scale(1.05);
  background: rgba(29, 43, 75, 0.85);
  border-color: rgba(214, 168, 78, 0.7);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(9, 16, 34, 0.7);
  backdrop-filter: blur(7px);
  color: rgba(251, 253, 255, 0.96);
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 98;
  display: grid;
  place-items: center;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  transform: translateY(-50%) scale(1.06);
  background: rgba(24, 38, 66, 0.86);
  border-color: rgba(214, 168, 78, 0.72);
}

.lightbox-prev {
  left: 0.9rem;
}

.lightbox-next {
  right: 0.9rem;
}

@media (max-width: 760px) {
  .lightbox-shell {
    border-radius: 16px;
    padding: 0.65rem;
    max-height: 94vh;
  }

  .lightbox-nav {
    width: 42px;
    height: 42px;
    font-size: 1.05rem;
  }

  .lightbox-prev {
    left: 0.45rem;
  }

  .lightbox-next {
    right: 0.45rem;
  }

  .lightbox-figure figcaption {
    font-size: 0.86rem;
    text-align: center;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 520ms ease, transform 520ms ease;
  transition-delay: var(--delay, 0ms);
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .hero-shell,
  .showcase-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    width: min(100%, 30rem);
    justify-self: start;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-map iframe {
    height: 350px !important;
  }

  .contact-layout-new {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-info-box {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-page .page-hero-content h1 {
    max-width: 22ch;
  }

  .contact-hero-panel {
    justify-content: flex-start;
  }

  .contact-hero-panel-inner {
    width: min(100%, 36rem);
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline-step::after {
    display: none;
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reference-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .quote-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-layout,
  .detail-panels {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-products-home .product-grid.preview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .products-page .product-grid-catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .products-page .products-layout {
    grid-template-columns: 240px 1fr;
    gap: 1.6rem;
  }

  .products-page .products-hero-stats {
    max-width: 34rem;
  }

  .about-page .about-kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-page .about-workflow .showcase-grid {
    gap: 1.2rem;
  }

  .gallery-page .gallery-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-page .gallery-toolbar-meta {
    justify-content: flex-start;
  }

  .gallery-page .gallery-grid.large {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-block;
    margin-left: auto;
    order: 2;
  }

  .theme-toggle {
    top: auto;
    right: 0.7rem;
    bottom: calc(0.8rem + env(safe-area-inset-bottom, 0px));
    padding: 0.38rem 0.6rem;
    font-size: 0.74rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1.2rem;
    width: min(92vw, 290px);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    background: var(--white);
    padding: 0.85rem;
    display: grid;
    gap: 0.5rem;
    transform: scale(0.96) translateY(-8px);
    transform-origin: top right;
    opacity: 0;
    pointer-events: none;
    transition: transform 200ms ease, opacity 200ms ease;
    order: 4;
  }

  html[data-theme="light"] .nav-menu {
    background: #ffffff;
  }

  .nav-menu.show {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .section-products-home .product-grid.preview {
    grid-template-columns: 1fr;
  }

  .gallery-grid.large {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .tools-row {
    flex-direction: column;
    align-items: stretch;
  }

  .products-page .products-hero-stats {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .products-page .products-results-pill {
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .products-page .tools-clear-link {
    margin-left: 0;
    display: inline-block;
    margin-top: 0.5rem;
  }

  .search-field {
    min-width: 100%;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-mark.brand-mark-logo {
    width: 58px;
    height: 58px;
  }

  .detail-spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-detail-page .review-layout {
    grid-template-columns: 1fr;
  }

  .product-detail-page .review-form-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-page .product-detail-panel {
    position: static;
    top: auto;
  }

  .product-detail-page .detail-kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-detail-page .detail-trust-strip {
    gap: 0.42rem;
  }

  .product-detail-page .detail-trust-strip span {
    font-size: 0.73rem;
    padding: 0.32rem 0.6rem;
  }

  .hero-slider {
    --hero-height: calc(100svh - 4.5rem);
    --hero-min-height: 24rem;
    --hero-safe-left: 1rem;
    --hero-safe-bottom: 1.3rem;
  }

  .hero-slide-content--logo {
    padding-top: clamp(1.5rem, 9vh, 4.2rem);
  }

  .hero-slide-content--logo .hero-logo-img {
    max-width: min(520px, 86%);
    max-height: 44vh;
  }

  .hero-title {
    font-size: clamp(1.95rem, 9.2vw, 3.55rem);
  }

  .hero-text-group {
    width: min(100%, 560px);
  }

  .hero-dots {
    bottom: 1.2rem;
  }

  .hero-nav {
    width: 2.8rem;
    height: 2.8rem;
  }

  .about-page .page-hero-content h1 {
    font-size: clamp(1.8rem, 7.6vw, 2.75rem);
  }

  .gallery-page .page-hero-content h1 {
    font-size: clamp(1.75rem, 7.1vw, 2.6rem);
  }

  .gallery-page .gallery-card-premium img {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 640px) {
  .theme-toggle {
    top: auto;
    right: 0.56rem;
    bottom: calc(0.7rem + env(safe-area-inset-bottom, 0px));
    padding: 0.34rem 0.46rem;
    gap: 0.3rem;
  }

  .theme-toggle-text {
    display: none;
  }

  .theme-toggle-icon {
    width: 1.2rem;
    height: 1.2rem;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.4rem, var(--max-width));
  }

  .card-grid,
  .value-grid,
  .timeline,
  .team-grid,
  .contact-info-box {
    grid-template-columns: 1fr;
  }

  .reference-strip,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid,
  .gallery-grid.large {
    grid-template-columns: 1fr;
  }

  .products-page .product-grid-catalog {
    grid-template-columns: 1fr;
  }

  .products-page .products-layout {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .products-page .products-sidebar {
    position: static;
  }

  .products-page .sidebar-categories {
    flex-direction: row;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .products-page .category-card-sidebar {
    flex: 0 1 calc(50% - 0.3rem);
  }

  .products-page .products-catalog .tools-row {
    padding: 0.75rem;
  }

  .product-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-slider {
    --hero-height: calc(100svh - 4.1rem);
    --hero-min-height: 21rem;
    --hero-safe-left: 0.85rem;
    --hero-safe-bottom: 1.05rem;
  }

  .hero-text-group {
    padding: 0.82rem 0.85rem 0.95rem;
    border-radius: 12px;
  }

  .hero-eyebrow {
    letter-spacing: 0.14em;
    margin-bottom: 0.7rem;
  }

  .hero-divider {
    margin: 0.52rem 0 0.82rem;
  }

  .hero-badges {
    margin-top: 0.85rem;
  }

  .hero-nav {
    display: none;
  }

  .about-page .about-kpi-grid {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .about-page .about-hero-media {
    min-height: 240px;
  }

  .about-slider-nav {
    width: 2.15rem;
    height: 2.15rem;
  }

  .about-page .about-hero-points span {
    font-size: 0.72rem;
  }

  .about-page .about-workflow .showcase-note p {
    font-size: 1.02rem;
  }

  .brand-mark.brand-mark-logo {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }

  .footer-logo {
    width: 82px;
    height: 82px;
  }

  .detail-spec-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-page .detail-kpi-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-page .product-detail-panel,
  .product-detail-page .product-media-detail {
    border-radius: 14px;
    padding: 0.85rem;
  }

  .product-detail-page .detail-chip-row {
    gap: 0.38rem;
  }

  .product-detail-page .detail-chip {
    font-size: 0.72rem;
  }

  .product-detail-page .detail-trust-strip {
    display: grid;
    grid-template-columns: 1fr;
  }

  .detail-slider-arrow {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .detail-slider-arrow.prev {
    left: 0.55rem;
  }

  .detail-slider-arrow.next {
    right: 0.55rem;
  }

  .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-page .gallery-toolbar-copy h2 {
    font-size: clamp(1.18rem, 6.1vw, 1.45rem);
  }

  .gallery-page .gallery-toolbar-meta {
    width: 100%;
    gap: 0.45rem;
  }

  .gallery-page .gallery-pill {
    font-size: 0.69rem;
    padding: 0.38rem 0.64rem;
  }

  .contact-hero-points {
    gap: 0.45rem;
  }

  .contact-hero-points span {
    font-size: 0.7rem;
    padding: 0.34rem 0.56rem;
  }

  .contact-hero-panel-inner {
    padding: 0.95rem;
  }

  .contact-form {
    padding: 1rem;
  }

  .contact-form-intro h2 {
    font-size: clamp(1.2rem, 5.5vw, 1.45rem);
  }
}

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

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

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}
