:root {
  --bg: #eff3fb;
  --bg-alt: #fdfdfd;
  --surface: #ffffff;
  --surface-muted: #eef3ff;
  --accent: #1ecba7;
  --accent-dark: #12a885;
  --text: #0c1424;
  --text-muted: #5a6277;
  --border: rgba(16, 36, 94, 0.12);
  --card-bg: #ffffff;
  --shadow: 0 25px 45px rgba(9, 17, 36, 0.08);
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top, rgba(30, 203, 167, 0.07), transparent 45%), var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

[hidden] {
  display: none !important;
}

body.lights-off {
  background: #050608;
  color: rgba(240, 247, 255, 0.92);
}

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

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

.container {
  width: min(1200px, 90vw);
  margin: 0 auto;
}

.container.narrow {
  width: min(760px, 90vw);
}

.eyebrow {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.ai-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  margin-right: 0.5rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.8), rgba(14, 165, 233, 0.4));
  border: 1px solid rgba(96, 226, 255, 0.6);
  color: #0a1729;
  font-weight: 700;
  font-size: 0.75rem;
  box-shadow: 0 0 15px rgba(34, 211, 238, 0.5);
  text-transform: uppercase;
  animation: aiPulse 2.4s ease-in-out infinite;
}

@keyframes aiPulse {
  0% {
    box-shadow: 0 0 10px rgba(34, 211, 238, 0.4), 0 0 0 0 rgba(34, 211, 238, 0.35);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 18px rgba(34, 211, 238, 0.7), 0 0 0 12px rgba(34, 211, 238, 0);
    transform: scale(1.08);
  }
  100% {
    box-shadow: 0 0 10px rgba(34, 211, 238, 0.4), 0 0 0 0 rgba(34, 211, 238, 0);
    transform: scale(1);
  }
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.75rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1rem;
}

.section {
  padding: 5rem 0;
}

#materials.section,
.section.extras,
.modeling-section,
#pricing.section,
#process.section,
#gallery.section,
#contacts.section {
  padding: 2.5rem 0;
}

.section.muted {
  background: #f8f9fc;
}

.section-heading {
  margin-bottom: 1.75rem;
}

.section-heading h2 {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
}

.section-heading.narrow {
  max-width: 640px;
}

@media (min-width: 1100px) {
  .section-heading.narrow {
    max-width: none;
  }

  .section-heading h2 {
    white-space: nowrap;
  }
}

.hero {
  display: block;
  padding: clamp(4.5rem, 7vh, 6.5rem) 0 clamp(3.5rem, 6vh, 5rem);
  min-height: auto;
  background: linear-gradient(180deg, #020305 0%, #05080f 60%, #0c1019 100%);
  position: relative;
  overflow: hidden;
  color: #f5f7ff;
}

body.lights-on .hero {
  background: linear-gradient(180deg, #0a101c 0%, #0c1422 60%, #070b13 100%);
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 203, 167, 0.35), transparent 70%);
  filter: blur(20px);
  opacity: 0.5;
  pointer-events: none;
}

.hero::before {
  top: -60px;
  right: 5%;
}

.hero::after {
  bottom: -110px;
  left: 5%;
}

.hero-grid {
  display: grid;
  gap: clamp(2.5rem, 3vw, 3.25rem);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
  position: relative;
  z-index: 1;
}

@media (min-width: 1100px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  }
}

.hero-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.hero-content .lead {
  font-size: 1.15rem;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-media {
  display: flex;
  justify-content: center;
}

.hero-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(16, 36, 94, 0.08);
  box-shadow: var(--shadow);
  max-width: 320px;
  color: var(--text);
  text-align: left;
}

.hero-card-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--accent);
  margin: 0 0 0.5rem;
}

body.lights-off .hero-card-title {
  color: #f5f7ff;
}

.hero-card-title {
  margin: 0 0 0.75rem;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
}

.hero-card-list {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  color: var(--text);
  line-height: 1.5;
  font-size: 0.95rem;
}

.hero-card-list li + li {
  margin-top: 0.4rem;
}

.hero-card-note {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

body.lights-off .hero-card-list {
  color: rgba(245, 247, 255, 0.9);
}

body.lights-off .hero-card-note {
  color: rgba(240, 247, 255, 0.9);
}

.extras {
  background: #f8f9fc;
}

.service-card .service-price {
  font-weight: 600;
  margin: 0.5rem 0 1rem;
  color: var(--accent-dark);
}

.hero-card p {
  margin-bottom: 0.5rem;
}

.link {
  color: var(--accent-dark);
  font-weight: 600;
}

body.lights-off .hero-card {
  background: rgba(8, 13, 22, 0.92);
  border-color: rgba(255, 255, 255, 0.08);
  color: #f6f8ff;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.55);
}

body.lights-off .hero-card p {
  color: rgba(245, 247, 255, 0.85);
}

body.lights-off .hero-card .link {
  color: var(--accent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 320;
  background: rgba(245, 248, 255, 0.95);
  border-bottom: 1px solid rgba(16, 36, 94, 0.08);
  backdrop-filter: blur(12px);
  transition: background 0.6s ease, border-color 0.6s ease;
}

body.lights-off .site-header {
  background: rgba(5, 6, 8, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header.minimal {
  position: relative;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
}

body.lights-off .logo {
  color: #f6f8ff;
}

.nav {
  position: relative;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links a {
  color: var(--text-muted);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.5rem;
  line-height: 1.35;
  border-radius: 0.65rem;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:focus-visible {
  outline: 2px solid rgba(30, 203, 167, 0.45);
  outline-offset: 2px;
  color: var(--text);
  background: rgba(30, 203, 167, 0.12);
}

body.lights-off .nav-links {
  background: rgba(4, 7, 12, 0.95);
  border-color: rgba(255, 255, 255, 0.08);
}

body.lights-off .nav-links a {
  color: #f6f8ff;
}

body.lights-off .nav-links a:hover {
  color: var(--accent);
}

.nav-cta {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  font-weight: 600;
}

.nav-cta-mobile {
  display: none;
}

body.lights-off .nav-cta {
  color: #f7faff;
  border-color: rgba(255, 255, 255, 0.15);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 5, 9, 0.75);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 130;
}

body.nav-open .nav-overlay {
  opacity: 1;
  pointer-events: auto;
}

body.nav-open {
  overflow: hidden;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(1, 3, 8, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 125;
}

body.nav-open::after {
  opacity: 1;
}

body.lightbox-open {
  overflow: hidden;
}

html.lightbox-open,
body.lightbox-open {
  height: 100%;
  overflow: hidden;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  background: none;
  border: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 10px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-toggle[aria-expanded='true'] {
  background: rgba(14, 23, 42, 0.08);
}

.nav-toggle span {
  width: 28px;
  height: 2px;
  background: var(--text);
}

body.lights-off .nav-toggle span {
  background: #f7faff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.full {
  width: 100%;
}

.btn.primary {
  background: var(--accent);
  color: #041814;
  box-shadow: 0 15px 30px rgba(26, 203, 167, 0.35);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 35px rgba(26, 203, 167, 0.3);
}

.btn.primary.glow {
  position: relative;
  animation: neonPulse 2.4s ease-in-out infinite;
}

.btn.primary.glow::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(30, 203, 167, 0.45), transparent 65%);
  filter: blur(12px);
  opacity: 0.8;
  z-index: -1;
}

.btn.primary.glow:hover::after {
  opacity: 1;
}

.btn.primary.glow:focus-visible {
  box-shadow: 0 0 0 4px rgba(30, 203, 167, 0.25);
}

@keyframes neonPulse {
  0% {
    box-shadow: 0 0 20px rgba(30, 203, 167, 0.35);
  }
  50% {
    box-shadow: 0 0 35px rgba(30, 203, 167, 0.5), 0 0 55px rgba(30, 203, 167, 0.2);
  }
  100% {
    box-shadow: 0 0 20px rgba(30, 203, 167, 0.35);
  }
}

.btn.secondary {
  background: #e6ecfa;
  color: var(--text);
}

.btn.ghost {
  border: 1px solid var(--border);
  color: var(--text);
}

.hero .btn.ghost {
  color: #f7faff;
  border-color: rgba(255, 255, 255, 0.35);
  background: transparent;
}

.section.quote-block {
  background: linear-gradient(120deg, rgba(30, 203, 167, 0.1), rgba(255, 255, 255, 0.6));
}

.section-heading + .form-wrapper,
.quote-block .form-wrapper {
  background: #fff;
  padding: 2rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(16, 36, 94, 0.08);
  box-shadow: var(--shadow);
}

.form-wrapper form {
  display: grid;
  gap: 1rem;
}

.contact-hint {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.file-inline {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.btn.small {
  padding: 0.65rem 1rem;
  font-size: 0.95rem;
}

label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  color: var(--text);
  font-weight: 500;
}

input,
textarea {
  border: 1px solid rgba(16, 36, 94, 0.15);
  background: #fdfdff;
  color: var(--text);
  border-radius: 0.75rem;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  width: 100%;
  box-sizing: border-box;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(30, 203, 167, 0.3);
}

.file-label input[type='file'] {
  padding: 0.5rem 0;
  border: none;
}

.file-helper {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.form-status {
  min-height: 1.25rem;
  font-size: 0.95rem;
}

.form-status.error {
  color: #e25252;
}

.form-status.success {
  color: var(--accent-dark);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.cards-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  padding: 1.75rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(16, 36, 94, 0.08);
  background: #fff;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-bottom: 0.5rem;
}

.material {
  background: #fdfefe;
}

.price-grid {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.price-card {
  padding: 1rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(16, 36, 94, 0.1);
  background: var(--surface-muted);
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
}

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

.price-card .value {
  font-size: 1.35rem;
  font-weight: 700;
}

.min-order {
  margin-top: 1.5rem;
  color: var(--text-muted);
}

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

@media (max-width: 1100px) {
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

.step-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(16, 36, 94, 0.08);
  background: #fff;
}

.step-index {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(30, 203, 167, 0.15);
  color: var(--accent-dark);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex: 0 0 auto;
}

.process-note {
  margin-top: 2rem;
  color: var(--text-muted);
}

.blackout {
  position: relative;
  overflow: hidden;
  background: #f8f9fc;
  padding: 3rem 0;
  color: #fdfdff;
}

.blackout::before {
  content: '';
  position: absolute;
  inset: 8% 4%;
  pointer-events: none;
  background: radial-gradient(circle at center, rgba(15, 23, 42, 0.06), transparent 70%);
}

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

.city-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 35% 0%, rgba(248, 184, 106, 0.35), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(84, 240, 255, 0.25), transparent 55%);
  filter: blur(35px);
  opacity: 0.6;
  pointer-events: none;
}

.blackout-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1.2rem, 3vw, 2rem);
  border-radius: 1.5rem;
  padding: clamp(1.25rem, 4vw, 2.2rem);
  background: linear-gradient(135deg, rgba(4, 8, 16, 0.9), rgba(7, 12, 22, 0.92));
  border: 1px solid rgba(93, 240, 193, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.blackout-copy h2 {
  margin: 0.3rem 0 0.6rem;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
}

.blackout-copy p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.92);
}

.badge {
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: rgba(93, 240, 193, 0.9);
}

.blackout-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.blackout-stats li {
  flex: 1;
  min-width: 160px;
  text-align: center;
  background: rgba(4, 9, 17, 0.85);
  border: 1px solid rgba(138, 247, 255, 0.3);
  border-radius: 1rem;
  padding: 0.65rem 0.5rem;
  box-shadow: 0 0 18px rgba(138, 247, 255, 0.2);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.blackout-stats span {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: #b5fff2;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.gallery-item {
  display: block;
  border: none;
  padding: 0;
  background: none;
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 1rem;
  border: 1px solid rgba(16, 36, 94, 0.08);
  box-shadow: 0 10px 20px rgba(12, 20, 40, 0.08);
}

.gallery-more {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.90);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0rem;
  z-index: 200;
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox-frame {
  position: relative;
  width: min(100vw, 1200px);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.lightbox-swiper {
  width: 100%;
  max-width: 100%;
}

.lightbox-swiper .swiper-wrapper {
  align-items: center;
}

.lightbox-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-swiper .swiper-slide img {
  width: 100vw;
  max-width: 100vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 1rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(5, 8, 12, 0.85);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.2s ease;
  z-index: 4;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(5, 8, 12, 0.82);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.2s ease;
  z-index: 3;
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(30, 203, 167, 0.45);
  transform: translateY(-50%) scale(1.08);
}

.lightbox-close:hover {
  background: rgba(30, 203, 167, 0.45);
  transform: scale(1.08);
}

.lightbox-caption {
  margin-top: 1rem;
  color: #cdd2e7;
  max-width: 80vw;
  text-align: center;
  font-size: 0.95rem;
}

.lightbox-swiper .swiper-pagination {
  position: absolute !important;
  bottom: 0.85rem !important;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
  width: auto !important;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  z-index: 3;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
}

.lightbox-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  opacity: 1;
  transition: background 0.25s ease, transform 0.25s ease;
}

.lightbox-swiper .swiper-pagination-bullet-active {
  background: #22d3ee;
  box-shadow: 0 0 8px rgba(34, 211, 238, 0.7);
  transform: scale(1.2);
}

@media (min-width: 769px) {
  .lightbox-swiper .swiper-pagination {
    bottom: 1.25rem !important;
  }
}

@media (max-width: 768px) {
  .lightbox-frame {
    width: 100%;
  }

  .lightbox-swiper .swiper-slide img {
    width: 100vw;
    max-height: 80vh;
  }

  .lightbox-prev,
  .lightbox-next {
    display: none;
  }

  .lightbox-close {
    width: 40px;
    height: 40px;
    top: 0.75rem;
    right: 0.75rem;
  }

  .gallery-item.mobile-hidden {
    display: none;
  }

  .gallery-more {
    display: inline-flex;
    margin: 1.5rem auto 0;
  }
}

@media (max-width: 480px) {
  .gallery-more {
    width: 100%;
    justify-content: center;
  }
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: start;
}

.contacts-grid > * {
  min-width: 0;
}

.contacts-grid .form-wrapper {
  width: 100%;
  max-width: min(560px, 100%);
  margin: 0 auto;
  box-sizing: border-box;
  padding: clamp(1.35rem, 4vw, 1.7rem);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.contact-list li {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.contact-list span {
  color: var(--text-muted);
  width: 120px;
  flex-shrink: 0;
}

.contact-note {
  color: var(--text-muted);
  margin-top: 1rem;
}

.site-footer {
  border-top: 1px solid rgba(16, 36, 94, 0.12);
  padding: 1.5rem 0;
  background: #ffffff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-inner ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.privacy .section,
.privacy-content {
  padding: 3rem 0;
}

.privacy-content ul {
  padding-left: 1.25rem;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
    background: rgba(14, 23, 42, 0.04);
  }

  .nav-toggle:focus-visible {
    outline: 2px solid rgba(30, 203, 167, 0.5);
    outline-offset: 2px;
  }

  .nav-toggle span {
    transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
  }

  .nav-toggle[aria-expanded='true'] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle[aria-expanded='true'] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded='true'] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    top: clamp(64px, 9vh, 82px);
    right: clamp(12px, 4vw, 22px);
    left: auto;
    width: min(92vw, 440px);
    max-width: 460px;
    transform: translateY(-8px) scale(0.98);
    flex-direction: column;
    background: rgba(255, 255, 255, 0.94);
    padding: clamp(1rem, 3vw, 1.25rem);
    padding-bottom: calc(clamp(1rem, 3vw, 1.25rem) + env(safe-area-inset-bottom, 0px));
    border: 1px solid rgba(16, 36, 94, 0.1);
    border-radius: 18px;
    z-index: 160;
    gap: 0.35rem;
    box-shadow: 0 25px 55px rgba(7, 14, 35, 0.18);
    max-height: calc(100vh - clamp(64px, 9vh, 82px) - 18px - env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    backdrop-filter: blur(12px);
    transition: transform 0.22s ease, opacity 0.22s ease, visibility 0.22s ease;
  }

  body.lights-off .nav-links {
    background: rgba(7, 10, 18, 0.93);
    border-color: rgba(255, 255, 255, 0.08);
  }

  .nav-links a {
    width: 100%;
    min-height: 52px;
    text-align: left;
    padding: 0.75rem 0.95rem;
    border-radius: 0.9rem;
    font-size: 1rem;
    white-space: normal;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav-cta {
    display: none;
  }

  .nav-cta-mobile {
    display: block;
    margin-top: 0.4rem;
  }

  .nav-cta-mobile .btn {
    min-height: 52px;
    font-size: 0.98rem;
    justify-content: center;
  }

  .header-inner {
    gap: 1rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .hero {
    padding-top: 6rem;
  }

  .hero-grid {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .nav-links {
    left: clamp(12px, 4vw, 18px);
    right: clamp(12px, 4vw, 18px);
    width: auto;
    max-width: none;
  }
}

@media (max-width: 900px) {
  .mode-pills.modeling-express {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .modeling-section .mode-pill {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .hero-actions {
    flex-direction: column;
  }

  .cards-grid,
  .price-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .contacts-grid {
    gap: 2rem;
    grid-template-columns: 1fr;
  }

  .contacts-grid .form-wrapper {
    padding: clamp(1.05rem, 3.5vw, 1.3rem) clamp(0.05rem, 1.5vw, 0.3rem);
  }

  .blackout .section-heading {
    padding: 1.75rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1rem;
  }

  .hero-content h1 {
    font-size: 1.9rem;
  }

  label {
    font-size: 0.95rem;
  }

  input,
  textarea {
    font-size: 0.95rem;
  }

  .contact-list li {
    flex-direction: column;
  }

  .hero-card {
    max-width: 100%;
  }
}
.hero-overlay,
.hero-beam {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-overlay {
  background: radial-gradient(circle at 20% 20%, rgba(0, 0, 0, 0.85), transparent 55%),
    linear-gradient(160deg, rgba(2, 5, 8, 0.95) 0%, rgba(5, 6, 8, 0.92) 100%);
  opacity: 0.85;
  mix-blend-mode: multiply;
}

.hero-beam {
  background: radial-gradient(circle at 60% 0%, rgba(255, 255, 255, 0.6), transparent 65%);
  opacity: 0.2;
  filter: blur(6px);
}

body.lights-off .hero {
  background: linear-gradient(180deg, #020305 0%, #050608 60%, #07090d 100%);
}

body.lights-off .hero-overlay {
  opacity: 0.95;
}

body.lights-off .hero-beam {
  opacity: 0;
}

body.lights-on .hero-overlay {
  opacity: 0.35;
}

body.lights-on .hero-beam {
  opacity: 0.45;
  animation: beamGlow 6s ease-in-out infinite alternate;
}

@keyframes beamGlow {
  from {
    opacity: 0.25;
    transform: translateY(-5%) scale(1.05);
  }
  to {
    opacity: 0.5;
    transform: translateY(5%) scale(0.98);
  }
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.calculator-section {
  position: relative;
}

.calc-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: 2rem;
}

.calc-panel {
  background: linear-gradient(145deg, rgba(6, 12, 31, 0.95), rgba(5, 18, 38, 0.9));
  border-radius: 1.6rem;
  padding: 2.2rem;
  border: 1px solid rgba(173, 216, 255, 0.08);
  box-shadow: 0 30px 60px rgba(3, 10, 25, 0.65);
  color: #e2e8f0;
}

.calc-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.calc-panel h2 {
  color: #f8fafc;
}

.calc-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.file-picker {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.1rem 1.5rem;
  border-radius: 1.25rem;
  border: 1px dashed rgba(56, 189, 248, 0.4);
  background: rgba(15, 23, 42, 0.6);
  transition: border-color 0.2s ease, background 0.2s ease;
  flex-wrap: wrap;
}

.file-picker.drag-active {
  border-color: rgba(56, 189, 248, 0.8);
  background: rgba(15, 23, 42, 0.8);
}

.file-picker-info {
  flex: 1;
  min-width: 220px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.file-label {
  font-weight: 600;
  color: #e2e8f0;
  margin: 0;
}
.file-trigger {
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(120deg, #22d3ee, #1d4ed8);
  color: #e0f2fe;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 15px 35px rgba(34, 211, 238, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-position 0.8s ease;
  background-size: 200% 200%;
}
.file-trigger:hover,
.file-trigger:focus-visible {
  background-position: 0% 50%;
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(30, 64, 175, 0.4);
}
.file-trigger:focus-visible {
  outline: 2px solid rgba(34, 211, 238, 0.8);
  outline-offset: 4px;
}
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transform: scale(0);
  animation: ripple 0.6s ease-out forwards;
  pointer-events: none;
}
@keyframes ripple {
  to {
    transform: scale(3);
    opacity: 0;
  }
}

.file-picker-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
  min-width: 190px;
  justify-content: center;
}

.upload-status {
  margin-top: 0.8rem;
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  width: 100%;
}

.upload-status.active {
  display: flex;
}

.upload-bar {
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
  position: relative;
}

.upload-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(56, 189, 248, 0.2), rgba(14, 165, 233, 0.9), rgba(56, 189, 248, 0.2));
  transform: translateX(-100%);
}

.upload-bar.animate::after {
  animation: progress-fill 1.5s linear forwards;
}

.upload-status span {
  font-size: 0.8rem;
  color: #cbd5f5;
}

.file-success {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(34, 197, 94, 0.15);
  padding: 0.4rem 0.9rem;
  border-radius: 14px;
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #befae3;
}

.file-success-copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  word-break: break-word;
  max-width: 250px;
}

.file-success-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.file-success-name {
  font-size: 0.85rem;
  color: #a7f3d0;
}

.file-change {
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #e0f2fe;
  font-size: 0.8rem;
  cursor: pointer;
}

.mode-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: #e2e8f0;
}

.mode-pills {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  width: 100%;
}

.mode-pill {
  width: 100%;
  min-width: 0;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(148, 163, 184, 0.08);
  color: #e2e8f0;
  cursor: pointer;
  font-weight: 600;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.35;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.modeling-section .mode-pill {
  padding: 0.7rem 1.05rem;
  font-size: 0.82rem;
}

.modeling-section .mode-pills {
  gap: 0.4rem;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}
.mode-pills.modeling-express {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.5rem;
}

.modeling-express .mode-pill[data-express='on'] {
  white-space: normal;
}

.mode-pill.active {
  background: linear-gradient(120deg, rgba(14, 165, 233, 0.9), rgba(14, 116, 144, 0.9));
  border-color: transparent;
  box-shadow: 0 10px 25px rgba(14, 165, 233, 0.25);
}

#modeling-scenario-pills {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

@media (min-width: 1100px) {
  #modeling-scenario-pills {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  #modeling-scenario-pills {
    grid-template-columns: 1fr;
  }
}


.hint {
  margin: 0;
  color: #94a3b8;
  font-size: 0.9rem;
}

.calc-warning {
  margin: 0;
  font-size: 0.9rem;
  color: #f87171;
}

.progress-wrap {
  margin-top: -0.1rem;
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  background: rgba(15, 23, 42, 0.45);
  border-radius: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.progress-wrap.active {
  display: flex;
}

.modeling-progress {
  margin-top: 0.85rem;
}

.modeling-progress .progress-text {
  font-size: 0.9rem;
  color: #e2e8f0;
}

.progress-label {
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: #cbd5f5;
  text-transform: uppercase;
}

.progress-bar {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(45, 212, 191, 0.4);
}

.progress-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(34, 197, 94, 0.15), rgba(34, 211, 238, 0.95), rgba(5, 150, 105, 0.9));
  transform: translateX(-100%);
}

.progress-bar.animate::after {
  animation: progress-fill 3s linear forwards;
}

.modeling-progress .progress-bar::after {
  animation: none;
}

.modeling-progress .progress-bar.animate::after {
  animation: modeling-progress-fill 1.5s linear forwards;
}

#progress-text {
  font-size: 0.9rem;
  color: #e2e8f0;
}

.calc-viewer {
  margin-top: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.viewer-card {
  padding: 1.25rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(2, 8, 23, 0.5);
}

.viewer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.viewer-title-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: nowrap;
}

.viewer-title {
  font-weight: 600;
}

.viewer-file-name {
  font-size: 0.9rem;
  color: #a5f3fc;
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 520px) {
  .viewer-title-row {
    flex-wrap: wrap;
  }

  .viewer-file-name {
    white-space: normal;
  }
}

#viewer-status {
  font-size: 0.85rem;
  color: #cbd5f5;
}

.viewer-canvas-wrap {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: radial-gradient(circle at top, rgba(34, 211, 238, 0.2), transparent 60%);
}

#stl-viewer {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  display: block;
}

@media (max-width: 768px) {
  #stl-viewer {
    aspect-ratio: 1 / 1;
  }
}

.calc-result {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 1rem;
  padding: 1rem;
  font-family: 'SFMono-Regular', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New',
    monospace;
  font-size: 0.95rem;
  line-height: 1.5;
}
.calc-warning {
  color: #f87171;
  font-weight: 600;
  margin-top: 0.75rem;
  font-size: 0.95rem;
}

.expert-panel {
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
}

.calc-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.8rem;
  justify-content: center;
}

.calc-result-actions .btn {
  min-width: 200px;
  text-align: center;
}

#toggle-expert {
  font-weight: 500;
  font-size: 0.98rem;
}

.calc-support {
  align-self: stretch;
  border-radius: 1.6rem;
  padding: 2rem;
  background: rgba(249, 250, 251, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--text);
}

.calc-support p {
  margin: 0;
  color: var(--text-muted);
}

.tg-instructions {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text);
  line-height: 1.5;
}

.support-note {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #94a3b8;
}

.calc-support .btn {
  margin-top: 0.5rem;
}

.modeling-section {
  background: #f8f9fc;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.modeling-grid {
  display: block;
}

.modeling-panel {
  padding: 1.6rem 2.1rem 1.2rem;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 2rem;
  align-items: stretch;
}

.modeling-form {
  display: flex;
  flex-direction: column;
  gap: 2.1rem;
}

.modeling-field {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #e2e8f0;
}

.modeling-label {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.modeling-checkbox {
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
}

.modeling-checkbox input {
  width: auto;
}

.modeling-result {
  align-self: stretch;
  border-radius: 1.25rem;
  border: 1px solid rgba(16, 36, 94, 0.08);
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.5rem;
  color: var(--text);
}

.modeling-result h3 {
  margin: 0;
  font-size: 1.85rem;
}

.modeling-summary {
  margin: 0;
  font-size: 0.96rem;
  color: var(--text);
}

.modeling-note {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 0.25rem;
}

@media (max-width: 992px) {
  .modeling-panel {
    grid-template-columns: 1fr;
  }

  .modeling-result {
    margin-top: 0.75rem;
  }
}

@media (max-width: 992px) {
  .calc-grid {
    grid-template-columns: 1fr;
  }

  .calc-panel,
  .modeling-panel,
  .calc-support {
    padding: 1.5rem;
  }

  .calc-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .mode-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .select-wrap {
    width: 100%;
  }

  .file-picker {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .file-picker-action,
  .file-trigger,
  .file-success {
    width: 100%;
  }

  .file-trigger,
  .file-change {
    text-align: center;
  }

  .mode-pills {
    width: 100%;
  }

  .mode-pills.modeling-express {
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  }
}

@keyframes progress-fill {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes modeling-progress-fill {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
.modeling-cta {
  text-align: center;
  justify-content: center;
}

.modeling-calc-btn {
  position: relative;
  overflow: hidden;
}

.modeling-warning {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: #f87171;
  font-weight: 600;
}

.modeling-progress {
  margin-top: 0.85rem;
}

.modeling-progress .progress-label {
  font-size: 0.8rem;
  color: #e2e8f0;
}

.modeling-progress .progress-text {
  font-size: 0.9rem;
  color: #f8fafc;
}

@media (max-width: 900px) {
  .mode-pills.modeling-express {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
    gap: 0.4rem;
  }

  .mode-pills.modeling-express .mode-pill {
    padding: 0.65rem 0.95rem;
    font-size: 0.85rem;
  }
}

.modeling-calc-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
  opacity: 0;
  transform: translateX(-45%);
}

.modeling-calc-btn.is-calculating {
  pointer-events: none;
  opacity: 0.85;
}

.modeling-calc-btn.is-calculating::after {
  opacity: 1;
  animation: modelingGlow 1.4s ease-in-out infinite;
}

@keyframes modelingGlow {
  0% {
    transform: translateX(-60%);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateX(60%);
    opacity: 0;
  }
}
.file-inline .btn.small {
  justify-content: center;
}

.scroll-top-btn {
  position: fixed;
  bottom: clamp(1.4rem, 4vw, 2.8rem);
  right: clamp(1rem, 3vw, 2.4rem);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.65rem 1.35rem 0.65rem 1rem;
  background: radial-gradient(circle at 20% 20%, rgba(61, 214, 184, 0.25), transparent 55%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.85));
  color: #f8fafc;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: 0 10px 35px rgba(4, 12, 24, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 55;
  transition: transform 0.35s ease, opacity 0.35s ease, box-shadow 0.35s ease;
  opacity: 0;
  transform: translateY(16px) scale(0.96);
  pointer-events: none;
}

.scroll-top-btn.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.scroll-top-btn:hover,
.scroll-top-btn:focus-visible {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 30px rgba(12, 19, 33, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  outline: none;
}

.scroll-top-icon {
  width: 1.4rem;
  height: 1.4rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: rgba(15, 118, 110, 0.35);
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.scroll-top-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

@media (max-width: 720px) {
  .scroll-top-btn {
    bottom: 1rem;
    right: 0.9rem;
    font-size: 0.88rem;
    padding: 0.58rem 1rem 0.58rem 0.85rem;
    gap: 0.35rem;
  }

  .scroll-top-icon {
    width: 1.2rem;
    height: 1.2rem;
  }
}
