:root {
  --bg: #0F172A;
  --bg-deep: #0B0F19;
  --surface: #1E293B;
  --primary: #2563EB;
  --highlight: #06B6D4;
  --whatsapp: #25D366;
  --text: #F8FAFC;
  --muted: #94A3B8;
  --line: rgba(148, 163, 184, 0.22);
  --shadow-panel: 0 24px 64px rgba(0, 0, 0, 0.38);
  --container: min(100% - 36px, 1180px);
  --section: clamp(68px, 8.5vw, 116px);
  --fs-body: clamp(1.04rem, 1.1vw, 1.18rem);
  --fs-headline: clamp(2.35rem, 5.2vw, 4.55rem);
  --fs-caption: 0.96rem;
}

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

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body.office-page {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 20% 11%, rgba(37, 99, 235, 0.17), transparent 28rem),
    linear-gradient(180deg, #0B0F19 0%, #0F172A 45%, #0B0F19 100%);
  color: var(--text);
  font-family: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: var(--fs-body);
  line-height: 1.62;
}

a {
  color: inherit;
}

p {
  color: var(--muted);
}

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

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.site-icon-fill {
  fill: currentColor;
  stroke: none;
}

.office-container {
  width: var(--container);
  margin-inline: auto;
}

.office-hero {
  position: relative;
  min-height: clamp(720px, 90vh, 900px);
  display: flex;
  align-items: center;
  padding: 132px 0 78px;
  background-image: url("../images/banner-officepc.webp");
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.office-hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(11, 15, 25, 0.96) 0%, rgba(11, 15, 25, 0.84) 54%, rgba(11, 15, 25, 0.46) 100%),
    linear-gradient(180deg, rgba(11, 15, 25, 0.2), rgba(11, 15, 25, 0.92));
}

.office-hero-grid,
.pricing-grid,
.refurb-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 470px);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.refurb-grid {
  grid-template-columns: minmax(330px, 0.95fr) minmax(0, 1fr);
}

.page-kicker,
.section-label {
  margin: 0 0 12px;
  color: var(--highlight);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  font-weight: 900;
}

.office-hero h1,
.section-head h2,
.refurb-grid h2,
.pricing-grid h2,
.final-cta h2 {
  margin: 0;
  color: var(--text);
  font-family: "Oswald", "Nunito Sans", sans-serif;
  font-size: var(--fs-headline);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.office-hero h1 {
  max-width: 880px;
  font-size: clamp(2.82rem, 5.8vw, 5.35rem);
}

.hero-copy,
.section-head p,
.refurb-grid p,
.pricing-grid p,
.final-cta p {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.4vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.page-btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 5px;
  padding: 15px 24px;
  font-size: 1.04rem;
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.page-btn-whatsapp {
  border: 1px solid var(--whatsapp);
  background: var(--whatsapp);
  color: var(--bg-deep);
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.22);
}

.page-btn-secondary {
  border: 1px solid rgba(148, 163, 184, 0.32);
  background: rgba(11, 15, 25, 0.78);
  color: var(--text);
}

.page-btn:hover,
.page-btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.page-btn-whatsapp:hover,
.page-btn-whatsapp:focus-visible {
  background: #32e577;
  color: #07110b;
  box-shadow: 0 20px 44px rgba(37, 211, 102, 0.3);
}

.page-btn-secondary:hover,
.page-btn-secondary:focus-visible {
  border-color: var(--highlight);
}

.office-hero-panel,
.pricing-panel {
  border-radius: 8px;
  background: rgba(30, 41, 59, 0.82);
  border: 1px solid rgba(6, 182, 212, 0.36);
  box-shadow: var(--shadow-panel);
  backdrop-filter: blur(14px);
  padding: clamp(24px, 4vw, 36px);
}

.office-hero-panel div,
.price-list div,
.refurb-points div {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 17px 0;
}

.office-hero-panel div:first-child,
.price-list div:first-child,
.refurb-points div:first-child {
  padding-top: 0;
}

.office-hero-panel div:last-child,
.price-list div:last-child,
.refurb-points div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.office-hero-panel span,
.price-list span,
.refurb-points span {
  color: var(--muted);
}

.office-hero-panel strong,
.price-list strong {
  color: var(--highlight);
  font-size: clamp(1.12rem, 1.8vw, 1.48rem);
  font-weight: 900;
  text-align: right;
}

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

.office-page [id] {
  scroll-margin-top: 108px;
}

.section-deep {
  background: rgba(11, 15, 25, 0.72);
  border-block: 1px solid rgba(148, 163, 184, 0.13);
}

.jump-guide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(26px, 4vw, 42px);
  border-radius: 8px;
  border: 1px solid rgba(125, 211, 252, 0.28);
  background: rgba(30, 41, 59, 0.72);
  padding: clamp(20px, 3vw, 28px);
}

.jump-guide div {
  display: grid;
  gap: 6px;
}

.jump-guide strong {
  color: var(--text);
  font-size: clamp(1.08rem, 1.5vw, 1.26rem);
  font-weight: 900;
  line-height: 1.24;
}

.jump-guide span {
  color: var(--muted);
  line-height: 1.5;
}

.refurb-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-panel);
}

.refurb-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.refurb-points {
  margin: 24px 0 28px;
  border-top: 1px solid var(--line);
}

.refurb-points strong {
  color: var(--text);
  font-weight: 900;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.package-grid article {
  border-radius: 8px;
  background: rgba(30, 41, 59, 0.76);
  padding: clamp(24px, 3vw, 32px);
}

.package-grid .featured-package {
  background: rgba(37, 99, 235, 0.22);
  box-shadow: var(--shadow-panel);
}

.package-grid h3,
.office-card h3 {
  margin: 0;
  color: var(--text);
  font-family: "Oswald", "Nunito Sans", sans-serif;
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
  line-height: 1.08;
}

.package-grid strong {
  display: block;
  margin-top: 14px;
  color: var(--whatsapp);
  font-size: clamp(1.16rem, 1.8vw, 1.42rem);
  font-weight: 900;
}

.package-grid p {
  margin: 12px 0 0;
  font-size: 1rem;
}

.package-note {
  max-width: 820px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.formula-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  align-items: center;
  margin-bottom: 28px;
}

.formula-row span,
.formula-row strong {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(11, 15, 25, 0.56);
  padding: 14px 16px;
  color: var(--text);
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  font-weight: 900;
  text-align: center;
}

.formula-row strong {
  background: var(--primary);
  width: 100%;
  padding-inline: 18px;
}

.formula-row b {
  color: var(--highlight);
  font-size: 1.5rem;
  text-align: center;
  justify-self: center;
  line-height: 1;
}

.section-head {
  max-width: 780px;
}

.section-head-wide {
  max-width: 900px;
}

.office-products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.office-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
}

.office-card-media {
  position: relative;
  background: var(--bg-deep);
}

.office-card-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.office-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 18px;
  padding: 22px;
}

.office-card-subtitle {
  margin: 0;
  color: var(--highlight);
  font-size: 1rem;
  font-weight: 900;
}

.office-spec-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.office-spec-list li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.36;
}

.office-spec-list img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.office-spec-list b {
  display: block;
  color: var(--text);
  font-size: 0.8rem;
  line-height: 1.15;
}

.office-card-footer {
  margin-top: auto;
  display: grid;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.office-price span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.office-price strong {
  display: block;
  color: var(--whatsapp);
  font-family: "Oswald", "Nunito Sans", sans-serif;
  font-size: clamp(2rem, 4vw, 2.85rem);
  line-height: 1;
}

.office-card .page-btn {
  width: 100%;
}

.final-cta {
  padding: clamp(58px, 8vw, 96px) 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.25), rgba(6, 182, 212, 0.12));
  border-top: 1px solid rgba(6, 182, 212, 0.28);
  text-align: center;
}

.final-cta h2,
.final-cta p {
  max-width: 840px;
  margin-inline: auto;
}

.final-cta .page-btn {
  margin-top: 30px;
}

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

@media (max-width: 1080px) {
  .office-products-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .office-hero-grid,
  .pricing-grid,
  .refurb-grid {
    grid-template-columns: 1fr;
  }

  .office-hero {
    min-height: auto;
    padding-top: 118px;
  }

  .office-hero-panel,
  .pricing-panel {
    max-width: 640px;
  }

  .refurb-image {
    order: 2;
  }

  .jump-guide {
    align-items: stretch;
    flex-direction: column;
  }

  .jump-guide .page-btn {
    width: 100%;
  }
}

@media (max-width: 620px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  html {
    scroll-behavior: auto;
  }

  body.office-page {
    font-size: 1rem;
    padding-bottom: 86px;
  }

  .mobile-quote-bar {
    position: fixed;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 1040;
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 6px;
    background: var(--whatsapp);
    color: var(--bg-deep);
    box-shadow: 0 18px 40px rgba(37, 211, 102, 0.28);
    font-size: 1.02rem;
    font-weight: 900;
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 28px));
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  body.office-page.mobile-quote-visible .mobile-quote-bar {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .office-hero {
    padding: 104px 0 58px;
    background-position: 57% center;
  }

  .office-hero h1 {
    max-width: 11ch;
    font-size: clamp(2.16rem, 10.8vw, 3rem);
    line-height: 1.04;
  }

  .hero-actions,
  .page-btn {
    width: 100%;
  }

  .hero-actions .page-btn-whatsapp {
    display: none;
  }

  .office-hero-panel div,
  .price-list div,
  .refurb-points div {
    display: grid;
    gap: 6px;
  }

  .office-hero-panel strong,
  .price-list strong {
    text-align: left;
  }

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

  .office-card-body {
    padding: 20px;
  }
}
