@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&display=swap');

:root {
  --green: #39ff14;
  --green-dark: #2de60f;
  --green-light: #ecffe8;
  --green-mid: #cfffbe;
  --white: #ffffff;
  --bg: #f8faf8;
  --bg-alt: #f4f8f5;
  --border: #dff0d9;
  --text: #0f1a10;
  --text-muted: #5f7363;
  --text-light: #91a392;
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.06);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.09);
  --radius: 16px;
  --radius-lg: 28px;
  --transition: 0.25s cubic-bezier(.4,0,.2,1);
  --font: 'Nunito', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

button {
  font-family: var(--font);
}

.page {
  display: none;
  min-height: 100vh;
  padding-top: 94px;
}

.page.active {
  display: block;
}

section {
  padding: clamp(4.5rem, 6.5vw, 6.8rem) clamp(1.6rem, 7vw, 7rem);
}

.single-bg-section {
  background: var(--bg-alt);
}

.section-alt {
  background: #eef9ea;
}

.section-label {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-light);
  padding: 0.4rem 1.05rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}

.section-title {
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.section-title-small {
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
}

.section-body {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 900px;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 94px;
  padding: 0 clamp(1.2rem, 5vw, 5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-logo {
  cursor: pointer;
}

.nav-logo img {
  height: 46px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  list-style: none;
}

.nav-links button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: 0.62rem 1.2rem;
  border-radius: 12px;
  transition: color var(--transition), background var(--transition);
}

.nav-links button:hover,
.nav-links button.active {
  color: var(--green-dark);
  background: var(--green-light);
}

.nav-cta {
  background: var(--green) !important;
  color: #0b0f0a !important;
  box-shadow: 0 3px 12px rgba(57,255,20,0.28);
}

.nav-cta:hover {
  background: var(--green-dark) !important;
  color: #0b0f0a !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 10px;
  transition: background-color var(--transition);
  z-index: 102;
}

.hamburger:hover,
.hamburger:focus-visible {
  background-color: var(--green-light);
  outline: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 3px;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease, background-color 0.2s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
  background: var(--green-dark);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
  background: var(--green-dark);
}

@keyframes slideDownNav {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFloatMobile {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* HERO */
#hero {
  min-height: calc(100vh - 94px);
  padding: 0 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3.5rem;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--white);
}

.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(15,26,16,0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.35;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 880px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-light);
  border: 1px solid var(--green-mid);
  color: var(--green-dark);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  margin-bottom: 2.4rem;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.hero-title {
  font-size: clamp(3.2rem, 5.8vw, 6.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 1.6rem;
}

.hero-title .accent {
  color: var(--green-dark);
}

.hero-sub {
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  color: var(--text-muted);
  max-width: 820px;
  line-height: 1.75;
  margin-bottom: 2.7rem;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  flex-shrink: 0;
  width: min(32vw, 460px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.hero-photo {
  width: 100%;
  max-height: 660px;
  object-fit: contain;
  animation: heroFloat 4.5s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* BUTTONS */
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-white {
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.btn-primary {
  background: var(--green);
  color: #0b0f0a;
  font-size: 1.15rem;
  font-weight: 800;
  padding: 1.05rem 2.4rem;
  box-shadow: 0 4px 16px rgba(57,255,20,0.28);
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--white);
  color: var(--green-dark);
  border: 2px solid var(--green);
  font-size: 1.15rem;
  font-weight: 800;
  padding: 1.05rem 2.4rem;
}

.btn-secondary:hover {
  background: var(--green-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-muted);
  border: 2px solid var(--border);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0.95rem 1.8rem;
}

.btn-outline:hover {
  border-color: var(--green);
  color: var(--green-dark);
}

.btn-white {
  background: var(--white);
  color: var(--green-dark);
  font-size: 1.18rem;
  font-weight: 800;
  padding: 1.1rem 2.6rem;
}

.center-action {
  text-align: center;
  margin-top: 2.8rem;
}

/* ABOUT */
.highlights-section {
  background: #f7f9f8;
  padding: 140px 7%;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.4rem;
  align-items: start;
  text-align: center;
}

.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.highlight-icon {
  width: 130px;
  height: 130px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.6rem;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
}

.highlight-icon i {
  font-size: 2.65rem;
}

.highlight-item h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.35;
  margin: 0;
}

.highlight-icon-blue {
  background: #e3ecf9;
}

.highlight-icon-blue i {
  color: #2f67ea;
}

.highlight-icon-green {
  background: #e6f7eb;
}

.highlight-icon-green i {
  color: #425656;
}

.highlight-icon-soft {
  background: #eef2f3;
}

.highlight-icon-soft i {
  color: #1bff32;
}

.highlight-icon-dark {
  background: #e9f3ea;
}

.highlight-icon-dark i {
  color: #1f002c;
}

/* HOME DEVICES PREVIEW */
.devices-preview {
  background: var(--white);
}

.devices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
  margin-top: 3rem;
}

.device-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 32px;
  padding: 1.8rem 1.4rem 2.1rem;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: var(--shadow-sm);
}

.device-card:hover {
  transform: translateY(-6px);
  border-color: var(--green);
  box-shadow: var(--shadow-md);
}

.device-image {
  height: 165px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.device-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.device-card h3 {
  font-size: 1.55rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #000000;
}

.device-card p {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* SERVICES SELECTOR (device -> model -> part -> price) */
.services-selector-section {
  background: var(--bg-alt);
}

.services-accordion-intro {
  margin-bottom: 2.4rem;
}

.device-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin: 2.4rem 0 2.6rem;
}

.device-tab {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 26px;
  padding: 2rem 1.2rem 1.75rem;
  cursor: pointer;
  transition: var(--transition);
}

.device-tab img {
  height: 76px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.08));
  transition: transform var(--transition);
}

.device-tab span {
  font-weight: 800;
  font-size: 1.16rem;
  color: var(--text);
}

.device-tab:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.device-tab:hover img {
  transform: scale(1.06);
}

.device-tab.active {
  border-color: var(--green);
  background: linear-gradient(160deg, var(--green-light) 0%, #ffffff 65%);
  box-shadow: 0 16px 32px rgba(57,255,20,0.2);
  transform: translateY(-2px);
}

.device-tab.active::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 14px;
  right: 14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green);
  color: #0b0f0a;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.model-select-wrap {
  max-width: 550px;
  margin-bottom: 2.4rem;
}

.model-select-wrap label {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.select-shell {
  position: relative;
  display: flex;
  align-items: center;
}

.select-icon {
  position: absolute;
  left: 1.3rem;
  color: var(--green-dark);
  font-size: 1.2rem;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  line-height: 1;
}

.select-icon svg {
  display: block;
  width: 22px;
  height: 22px;
  color: var(--green-dark);
}

.select-chevron {
  position: absolute;
  right: 1.4rem;
  color: var(--text-light);
  font-size: 1rem;
  pointer-events: none;
}

.model-select-wrap select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem 3.1rem 1.25rem 3.4rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  outline: none;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.model-select-wrap select:hover {
  border-color: var(--green);
  transform: translateY(-1px);
}

.model-select-wrap select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(57,255,20,0.15);
}

.part-select-wrap {
  margin-bottom: 2.6rem;
  max-width: 880px;
}

.part-select-wrap label {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.1rem;
  letter-spacing: -0.01em;
}

.part-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.95rem 1.1rem;
  width: 100%;
}

.part-pill {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 0.65rem 1rem 0.65rem 0.75rem;
  min-height: 58px;
  width: 100%;
  box-sizing: border-box;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: all var(--transition);
  text-align: left;
  user-select: none;
  outline: none;
}

.part-pill:hover {
  border-color: var(--green);
  color: #0b0f0a;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.07);
}

.part-pill:hover .pill-icon-badge {
  background: #e6fced;
  border-color: #86efac;
  transform: scale(1.05);
}

.part-pill:focus-visible {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(57, 255, 20, 0.25);
}

.part-pill.active {
  background: var(--green);
  border-color: var(--green);
  color: #0b0f0a;
  box-shadow: 0 8px 24px rgba(57, 255, 20, 0.32);
  transform: translateY(-2px);
}

.pill-icon-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  min-width: 38px;
  min-height: 38px;
  border-radius: 11px;
  background: #f2fbf4;
  border: 1px solid #dcfce7;
  color: #111827;
  flex-shrink: 0;
  transition: all var(--transition);
}

.pill-icon-badge .repair-icon-svg {
  width: 20px;
  height: 20px;
  display: block;
}

.part-pill.active .pill-icon-badge {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
  color: #0b0f0a;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

.part-pill.active .pill-icon-badge .icon-accent-path {
  stroke: #166534;
}

.pill-name {
  font-weight: 700;
  font-size: 0.96rem;
  line-height: 1.25;
  color: inherit;
  flex: 1;
  min-width: 0;
}

.part-pill.active .pill-name {
  font-weight: 800;
  color: #0b0f0a;
}

.pill-cc-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f4a018;
  margin-left: auto;
  vertical-align: middle;
  flex-shrink: 0;
}

.part-result {
  max-width: 880px;
}

.result-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.1rem;
  box-shadow: var(--shadow-sm);
}

.result-card-top {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  margin-bottom: 1.5rem;
}

.result-icon-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 15px;
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
  color: #0b0f0a;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.12);
}

.result-icon-badge .repair-icon-svg {
  width: 28px;
  height: 28px;
}

.result-title-group h3 {
  font-size: 1.42rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.result-title-group .result-subtitle {
  font-size: 1.02rem;
  color: var(--text-muted);
}

.result-price-row {
  display: flex;
  gap: 2.8rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.result-price-row .rlabel {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.35rem;
}

.result-price-row .rvalue {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
}

.result-price-row .rvalue.pending {
  font-size: 1.14rem;
  color: #b9790a;
  font-weight: 700;
}

.result-note {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.6;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.95rem 1.2rem;
  margin-bottom: 1.6rem;
}

.result-continue-btn {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.18rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  box-sizing: border-box;
}

.cc-text {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.cc-actions {
  display: flex;
  gap: 0.95rem;
  flex-wrap: wrap;
}

.cc-actions .btn-primary,
.cc-actions .btn-outline {
  padding: 1.05rem 1.65rem;
  font-size: 1.08rem;
  text-decoration: none;
  text-align: center;
}

.cc-actions .result-continue-btn {
  width: auto;
  flex: 1;
  min-width: 240px;
}

/* PROCESS */
.process-steps-section {
  background: #f7f9f8;
  padding: 120px 7%;
  text-align: center;
}

.process-main-title {
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  font-weight: 800;
  color: #111827;
  margin-bottom: 1.2rem;
}

.process-main-title span {
  color: #22c10c;
}

.process-main-subtitle {
  max-width: 820px;
  margin: 0 auto 4.5rem;
  font-size: 1.28rem;
  line-height: 1.8;
  color: #5f6f68;
}

.process-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}

.process-card {
  padding: 1.2rem;
}

.process-card-top {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 2.4rem;
}

.process-icon-box {
  width: 215px;
  height: 215px;
  background: #ffffff;
  border-radius: 32px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.2rem;
}

.process-step-circle {
  position: absolute;
  right: 18px;
  top: -16px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  font-size: 2.1rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-card h3 {
  font-size: 2.1rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 1.1rem;
}

.process-card p {
  font-size: 1.18rem;
  color: #5f6f68;
  line-height: 1.8;
  max-width: 400px;
  margin: 0 auto;
}

.step-1 .process-step-circle {
  background: linear-gradient(135deg, #d8efd4, #9ff194);
  color: #000;
  box-shadow: 0 10px 30px rgba(151, 190, 146, 0.4);
}

.step-1 .process-icon-box i {
  color: #040034;
}

.step-2 .process-step-circle {
  background: linear-gradient(135deg, #d8efd4, #9ff194);
  color: #000000;
  box-shadow: 0 10px 30px rgba(220, 235, 220, 0.4);
}

.step-2 .process-icon-box i {
  color: #bf3232;
}

.step-3 .process-step-circle {
  background: linear-gradient(135deg, #d8efd4, #9ff194);
  color: #000;
  box-shadow: 0 10px 30px rgba(141,187,47,0.35);
}

.step-3 .process-icon-box i {
  color: #00999b;
}

/* REVIEWS */
#reviews {
  background: var(--white);
}

.reviews-marquee {
  margin-top: 2.5rem;
  overflow: hidden;
  position: relative;
}

.reviews-track {
  display: flex;
  align-items: flex-start;
  gap: 2.6rem;
  width: max-content;
  animation: reviewsMove 40s linear infinite;
}

.reviews-marquee:hover .reviews-track {
  animation-play-state: paused;
}

.review-item {
  padding: 0.25rem 0;
  border: none;
  background: transparent;
}

.review-wide {
  width: 360px;
  flex: 0 0 360px;
}

.review-long {
  width: 460px;
  flex: 0 0 460px;
}

.review-small {
  width: 240px;
  flex: 0 0 240px;
}

.review-head {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  margin-bottom: 0.55rem;
  flex-wrap: wrap;
}

.review-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
}

.review-stars {
  font-size: 1.05rem;
  color: #f4a018;
  letter-spacing: 1px;
  font-weight: 700;
}

.review-item p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* CTA */
.cta-band {
  background: var(--green);
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 3.8rem 2rem;
}

.cta-band h2 {
  font-size: clamp(2.3rem, 3.5vw, 3.2rem);
  font-weight: 800;
  color: #0b0f0a;
  margin-bottom: 0.85rem;
}

.cta-band p {
  color: rgba(11,15,10,0.78);
  margin-bottom: 2.1rem;
  font-size: 1.2rem;
}

/* PAGE HEADERS */
.contact-page-header,
.booking-page-header,
.services-page-header {
  background: var(--bg-alt);
  padding: 64px clamp(1.4rem, 7vw, 7rem) 46px;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.9rem;
  padding-top: 1rem;
}

.contact-item {
  display: flex;
  gap: 1.15rem;
  align-items: flex-start;
}

.contact-ico {
  font-size: 1.6rem;
  line-height: 1;
  margin-top: 0.15rem;
}

.contact-item-text h4 {
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.contact-item-text p {
  font-size: 1.18rem;
  font-weight: 800;
  margin: 0;
}

.contact-item-text a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-item-text a:hover {
  color: var(--green-dark);
  text-decoration: underline;
}

.contact-phones-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-item-text small {
  font-size: 1rem;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}

.form-card,
.booking-card,
.booking-summary-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
}

.form-card,
.booking-card {
  padding: 2.6rem;
}

.form-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.35rem;
}

.form-group-no-margin {
  margin-bottom: 0;
}

.form-group label {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 1.08rem 1.2rem;
  color: var(--text);
  font-size: 1.12rem;
  outline: none;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(57,255,20,0.12);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-submit-full {
  width: 100%;
  font-size: 1.18rem;
  padding: 1.18rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 3.5rem 2.4rem;
  background: var(--green-light);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--green-mid);
}

.success-check {
  font-size: 3.6rem;
  margin-bottom: 1.2rem;
}

.form-success h3 {
  font-size: 1.65rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.form-success p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* BOOKING SELECTION CARD */
.booking-selection-card {
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 1.4rem 1.65rem;
  margin-bottom: 1.85rem;
  background: var(--bg);
}

.bsc-empty {
  text-align: center;
  padding: 0.75rem 0;
}

.bsc-empty p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  font-weight: 700;
  font-size: 1.1rem;
}

.bsc-filled {
  display: none;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.bsc-device {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.bsc-device img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  background: var(--white);
  border-radius: 14px;
  padding: 7px;
  border: 1px solid var(--border);
}

.bsc-device h4 {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--text);
}

.bsc-device span {
  font-size: 1.02rem;
  color: var(--text-muted);
  font-weight: 700;
}

.bsc-price-row {
  display: flex;
  gap: 1.9rem;
}

.bsc-price-row .label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.bsc-price-row .value {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--green-dark);
}

/* BOOKING */
.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 2.4rem;
  align-items: start;
}

.booking-summary-card {
  padding: 1.9rem;
  position: sticky;
  top: 110px;
}

.booking-summary-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1.6rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--border);
}

.summary-row .label {
  color: var(--text-light);
  font-size: 1.04rem;
  font-weight: 700;
}

.summary-row .value {
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 800;
  text-align: right;
  max-width: 58%;
  word-break: break-word;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.72rem;
  margin-top: 0.6rem;
}

.slot {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 0.88rem 0.55rem;
  font-size: 0.98rem;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  color: var(--text-muted);
  transition: all var(--transition);
}

.slot:hover,
.slot.selected {
  background: var(--green-light);
  border-color: var(--green);
  color: var(--green-dark);
}

.guarantee-box {
  background: var(--green-light);
  border: 1px solid var(--green-mid);
  border-radius: 14px;
  padding: 1.2rem 1.4rem;
  margin-top: 1.8rem;
}

.guarantee-box p {
  font-size: 0.98rem;
  color: var(--green-dark);
  line-height: 1.65;
  font-weight: 700;
}

.booking-confirm {
  display: none;
  background: var(--green-light);
  border: 1.5px solid var(--green-mid);
  border-radius: var(--radius-lg);
  padding: 3rem 1.8rem;
  text-align: center;
}

.big-check {
  font-size: 3.8rem;
  margin-bottom: 1.2rem;
}

.booking-confirm h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
}

.booking-confirm p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.booking-details-card {
  background: var(--white);
  border: 1px solid var(--green-mid);
  border-radius: 14px;
  padding: 1.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  text-align: left;
}

.booking-details-card .dl {
  color: var(--text-light);
  font-weight: 700;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.booking-details-card .dv {
  color: var(--text);
  font-weight: 800;
  font-size: 1.18rem;
}

.booking-back-btn,
.booking-submit-btn {
  margin-top: 1.5rem;
}

/* SERVICES PROCESS CARDS */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px,1fr));
  gap: 1.8rem;
  margin-top: 3rem;
  counter-reset: step;
}

.process-step {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.4rem 1.9rem;
  counter-increment: step;
}

.process-step::before {
  content: counter(step, decimal-leading-zero);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--green-dark);
  letter-spacing: 0.06em;
  display: inline-block;
  background: var(--green-light);
  padding: 0.25rem 0.72rem;
  border-radius: 8px;
  margin-bottom: 1.2rem;
}

.process-step h3 {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.process-step p {
  font-size: 1.04rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* FOOTER */
.footer {
  background: #03170c;
  color: #d1d5db;
  padding: 75px 7%;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-logo {
  height: 38px;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 16px;
  line-height: 1.65;
  max-width: 330px;
  color: #9ca3af;
}

.footer-col h4 {
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: #ffffff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col button,
.footer-col span,
.footer-col a {
  font-size: 16px;
  color: #9ca3af;
  background: none;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}

.footer-col button:hover,
.footer-col a:hover {
  color: var(--green);
}

.footer-phones-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-phones-container:empty {
  display: none;
  margin-bottom: 0;
}

.footer-phone-row {
  margin: 0;
  line-height: 1.4;
}

.contact-phones-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-phones-list a {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s;
}

.contact-phones-list a:hover {
  color: var(--green-dark);
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}

.social-icons a {
  width: 54px;
  height: 54px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 22px;
  color: #fff;
  text-decoration: none;
  transition: all 0.25s ease;
}

.social-icons a:hover {
  background: var(--green);
  color: #000;
  transform: translateY(-3px);
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  font-size: 15px;
  color: #6b7280;
}

/* LOADING */
.loading-state {
  opacity: 0.7;
  pointer-events: none;
}

/* ANIMATION */
@keyframes reviewsMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .contact-grid,
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-summary-card {
    position: static;
  }

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

@media (max-width: 1000px) {
  .hero-visual {
    width: min(30vw, 320px);
  }

  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

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

  .process-icon-box {
    width: 175px;
    height: 175px;
    font-size: 3.4rem;
  }

  .process-step-circle {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
    right: 50%;
    transform: translateX(95px);
  }
}

@media (max-width: 960px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .part-pills {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem 0.95rem;
  }
}

@media (max-width: 768px) {
  nav {
    height: 80px;
    padding: 0 1.25rem;
  }

  .nav-logo img {
    height: 38px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.2rem 1.4rem 1.6rem;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
    z-index: 999;
    animation: slideDownNav 0.22s ease-out;
  }

  .nav-links.open li {
    width: 100%;
  }

  .nav-links.open button {
    width: 100%;
    text-align: left;
    padding: 0.85rem 1.2rem;
    font-size: 1.12rem;
    border-radius: 12px;
  }

  .nav-links.open .nav-cta {
    text-align: center;
    margin-top: 0.4rem;
    padding: 0.95rem 1.2rem;
  }

  section {
    padding: 3rem 1rem;
  }

  #hero {
    min-height: auto;
    padding: 2.2rem 1.4rem 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    gap: 0;
    position: relative;
    overflow: hidden;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 520px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    margin: 0;
  }

  .hero-badge {
    margin-bottom: 1.25rem;
    padding: 0.45rem 1.1rem;
    font-size: 0.88rem;
    align-self: flex-start;
  }

  .hero-title {
    font-size: clamp(2.55rem, 8.6vw, 3.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
    text-align: left;
  }

  .hero-sub {
    font-size: clamp(1.05rem, 3.8vw, 1.22rem);
    line-height: 1.62;
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 0 1.8rem;
    text-align: left;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 420px;
    gap: 0.75rem;
    margin: 0 0 1rem;
    position: relative;
    z-index: 2;
    align-items: stretch;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    padding: 1rem 1.6rem;
    font-size: 1.08rem;
    font-weight: 800;
    text-align: center;
    justify-content: center;
    border-radius: var(--radius);
  }

  .hero-visual {
    display: flex !important;
    position: relative;
    width: 100%;
    max-width: 460px;
    margin: 0.5rem auto 0;
    justify-content: center;
    align-items: flex-end;
    z-index: 1;
    line-height: 0;
    pointer-events: none;
  }

  .hero-visual::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    height: 75%;
    background: radial-gradient(ellipse at bottom, rgba(57, 255, 20, 0.14) 0%, rgba(57, 255, 20, 0.04) 50%, rgba(255, 255, 255, 0) 75%);
    z-index: -1;
    pointer-events: none;
  }

  .hero-photo {
    width: min(92%, 420px);
    max-height: 480px;
    height: auto;
    object-fit: contain;
    object-position: bottom center;
    display: block;
    margin: 0 auto;
    animation: none;
    filter: none;
    -webkit-mask-image: linear-gradient(to bottom, #000 84%, rgba(0, 0, 0, 0.35) 94%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 84%, rgba(0, 0, 0, 0.35) 94%, transparent 100%);
  }

  .services-page-header,
  .contact-page-header,
  .booking-page-header {
    padding: 44px 1rem 2.3rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .review-wide,
  .review-long,
  .review-small {
    width: 280px;
    flex: 0 0 280px;
  }

  .service-device-head {
    padding: 1rem;
    align-items: flex-start;
  }

  .service-device-left {
    align-items: flex-start;
  }

  .service-device-icon {
    width: 54px;
    height: 54px;
  }

  .service-device-head h3 {
    font-size: 1.25rem;
  }

  .service-device-head p {
    font-size: 0.9rem;
  }

  .service-device-body {
    padding: 0 1rem;
  }

  .service-device-card.active .service-device-body {
    padding: 0 1rem 1rem;
  }

  .service-tags {
    gap: 0.6rem;
  }

  .service-tags span {
    width: 100%;
    border-radius: 14px;
  }
}

@media (max-width: 640px) {
  #hero {
    padding: 1.8rem 1.2rem 0;
  }

  .hero-title {
    font-size: clamp(2.35rem, 8.6vw, 3.1rem);
    margin-bottom: 0.9rem;
  }

  .hero-sub {
    font-size: clamp(1.02rem, 3.8vw, 1.15rem);
    margin-bottom: 1.6rem;
  }

  .hero-photo {
    width: min(94%, 390px);
    max-height: 450px;
  }

  .part-pills {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .part-pill {
    min-height: 56px;
    padding: 0.65rem 1rem 0.65rem 0.75rem;
  }

  .time-slots {
    grid-template-columns: repeat(2, 1fr);
  }

  .device-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .bsc-filled {
    flex-direction: column;
    align-items: flex-start;
  }

  .bsc-price-row {
    width: 100%;
    justify-content: space-between;
  }

  .form-card,
  .booking-card,
  .booking-summary-card {
    padding: 1.3rem;
    border-radius: 18px;
  }

  .booking-details-card {
    grid-template-columns: 1fr;
  }

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

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

  .btn-primary,
  .btn-secondary,
  .btn-white {
    width: 100%;
  }

  .highlights-section {
    padding: 50px 1rem 60px;
  }

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

  .highlight-icon {
    width: 90px;
    height: 90px;
  }

  .highlight-icon i {
    font-size: 1.9rem;
  }

  .highlight-item h3 {
    font-size: 1.15rem;
  }

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

@media (max-width: 360px) {
  #hero {
    padding: 1.4rem 0.9rem 0;
  }

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

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

  .hero-photo {
    max-height: 360px;
    width: 95%;
  }
}
