:root {
  --blue: #0967ff;
  --blue-dark: #003fcb;
  --navy: #07183f;
  --text: #1b2a4a;
  --muted: #64708b;
  --soft: #f4f8ff;
  --white: #ffffff;
  --border: #e4eaf5;
  --shadow: 0 18px 45px rgba(7, 24, 63, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: linear-gradient(135deg, #0b6bff, #003ec2);
  position: relative;
  box-shadow: 0 8px 22px rgba(9, 103, 255, 0.22);
}

.brand-icon::before,
.brand-icon::after,
.brand-icon span::before,
.brand-icon span::after {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 99px;
}

.brand-icon::before {
  width: 4px;
  height: 20px;
  left: 13px;
  top: 11px;
}

.brand-icon::after {
  width: 4px;
  height: 26px;
  right: 13px;
  top: 8px;
}

.brand-icon span::before {
  width: 19px;
  height: 3px;
  left: 12px;
  top: 19px;
}

.brand-icon span::after {
  width: 5px;
  height: 5px;
  left: 10px;
  top: 9px;
  box-shadow: 18px 6px 0 #fff, 0 22px 0 #fff, 18px 22px 0 #fff;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  color: var(--blue-dark);
  font-size: 19px;
  letter-spacing: 1px;
}

.brand-text small {
  color: var(--navy);
  letter-spacing: 5px;
  font-size: 10px;
  margin-top: 5px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex: 1;
  font-size: 15px;
  color: var(--navy);
}

.main-nav a {
  position: relative;
  padding: 26px 0;
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--blue);
}

.main-nav a.active::after,
.main-nav a:hover::after {
  content: "";
  position: absolute;
  height: 3px;
  left: 0;
  right: 0;
  bottom: 18px;
  border-radius: 20px;
  background: var(--blue);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #004ee8);
  box-shadow: 0 12px 26px rgba(9, 103, 255, 0.22);
}

.btn-secondary {
  color: var(--blue);
  background: var(--white);
  border-color: rgba(9, 103, 255, 0.35);
}

.full-width {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 10px;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  align-items: center;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 20px;
}

.hero {
  padding: 76px 0 40px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(9, 103, 255, 0.11), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 54px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  background: #eaf2ff;
  color: var(--blue);
  border-radius: 999px;
  padding: 9px 17px;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.4px;
  margin-bottom: 22px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  color: var(--navy);
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 22px;
}

h1 span {
  color: var(--blue);
}

h2 {
  color: var(--navy);
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.12;
  letter-spacing: -1.3px;
  margin-bottom: 20px;
}

h3 {
  color: var(--navy);
  font-size: 21px;
  margin-bottom: 10px;
}

.hero-lead,
.section p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin: 30px 0;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  color: var(--navy);
  font-size: 14px;
  margin-top: 26px;
}

.hero-points div {
  display: flex;
  gap: 8px;
  align-items: center;
}

.point-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  border: 1px solid rgba(9, 103, 255, 0.35);
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.building-card {
  position: absolute;
  right: -60px;
  top: 0;
  width: 220px;
  height: 420px;
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.85), rgba(255,255,255,0.2)),
    repeating-linear-gradient(180deg, #dcecff 0 58px, #ffffff 58px 68px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transform: skewY(-5deg);
  opacity: 0.9;
}

.laptop-mockup {
  position: absolute;
  left: 0;
  bottom: 22px;
  width: 620px;
  background: #121826;
  border-radius: 20px 20px 12px 12px;
  padding: 12px;
  box-shadow: 0 28px 55px rgba(7, 24, 63, 0.28);
}

.laptop-mockup::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -18px;
  height: 18px;
  background: linear-gradient(180deg, #b8c0cc, #687284);
  border-radius: 0 0 50px 50px;
}

.mockup-topbar {
  height: 36px;
  background: #00479e;
  border-radius: 10px 10px 0 0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  font-size: 12px;
}

.mockup-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
}

.mockup-brand span {
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 5px;
}

.mockup-screen {
  background: #f5f8fc;
  min-height: 350px;
  border-radius: 0 0 10px 10px;
  padding: 22px;
}

.screen-title {
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 16px;
}

.filters {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 80px;
  gap: 10px;
  background: #fff;
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 18px;
  border: 1px solid var(--border);
}

.filters div {
  height: 28px;
  background: #f2f5fa;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.filters button {
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  font-weight: 700;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
}

.room-card {
  background: #fff;
  border-radius: 10px;
  min-height: 74px;
  padding: 11px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue);
  box-shadow: 0 10px 22px rgba(7, 24, 63, 0.06);
}

.room-card strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  margin-bottom: 5px;
}

.room-card span {
  display: inline-flex;
  padding: 3px 8px;
  border-radius: 99px;
  color: #fff;
  font-size: 9px;
  text-transform: uppercase;
  font-weight: 800;
}

.room-card small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 10px;
}

.room-card.dirty {
  border-left-color: #ef3340;
}

.room-card.dirty span {
  background: #ef3340;
}

.room-card.clean {
  border-left-color: #1fb76b;
}

.room-card.clean span {
  background: #1fb76b;
}

.room-card.review {
  border-left-color: #ff9f1a;
}

.room-card.review span {
  background: #ff9f1a;
}

.room-card.occupied {
  border-left-color: #0077d9;
}

.room-card.occupied span {
  background: #0077d9;
}

.phone-mockup {
  position: absolute;
  right: 10px;
  bottom: 0;
  width: 190px;
  height: 380px;
  background: #111827;
  border-radius: 30px;
  padding: 10px;
  box-shadow: 0 24px 48px rgba(7, 24, 63, 0.28);
  z-index: 3;
}

.phone-notch {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 70px;
  height: 18px;
  background: #111827;
  border-radius: 0 0 12px 12px;
  transform: translateX(-50%);
  z-index: 2;
}

.phone-screen {
  height: 100%;
  background: #fff;
  border-radius: 22px;
  padding: 28px 10px 10px;
  overflow: hidden;
}

.guest-hero {
  height: 86px;
  border-radius: 14px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 24, 63, 0.9), rgba(9, 103, 255, 0.6)),
    linear-gradient(90deg, #1b2a4a, #90b8ff);
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.guest-hero strong {
  font-size: 18px;
}

.guest-hero small {
  opacity: 0.9;
}

.language-row {
  display: flex;
  gap: 5px;
  margin: 10px 0;
}

.language-row span {
  flex: 1;
  background: #eef4ff;
  color: var(--blue);
  border-radius: 6px;
  text-align: center;
  font-size: 9px;
  font-weight: 800;
  padding: 4px 0;
}

.phone-option {
  padding: 10px;
  border-radius: 10px;
  background: #f6f8fc;
  margin-bottom: 8px;
  font-size: 11px;
  color: var(--navy);
  font-weight: 700;
}

.solution-cards {
  padding: 20px 0 60px;
  background: #f8fbff;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.solution-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 12px 28px rgba(7, 24, 63, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.solution-card p {
  color: var(--muted);
  line-height: 1.6;
  min-height: 76px;
}

.solution-card span {
  color: var(--blue);
  font-weight: 800;
}

.card-icon {
  width: 58px;
  height: 58px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-weight: 900;
  font-size: 20px;
}

.card-icon.blue {
  color: #0967ff;
  background: #eaf2ff;
}

.card-icon.green {
  color: #0a9f5b;
  background: #e8f8f0;
}

.card-icon.orange {
  color: #d46b00;
  background: #fff1dd;
}

.card-icon.purple {
  color: #7a20d8;
  background: #f1e6ff;
}

.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
}

.soft-section {
  background: #f6f9ff;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 34px;
}

.feature-list div {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  color: var(--navy);
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(7, 24, 63, 0.04);
}

.feature-list div::before {
  content: "✓";
  color: var(--blue);
  font-weight: 900;
  margin-right: 9px;
}

.panel-preview,
.automation-card,
.lock-card,
.qr-demo-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.panel-preview {
  padding: 24px;
}

.panel-header {
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue), #0041c8);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 17px;
  font-weight: 800;
  margin-bottom: 20px;
}

.panel-header span {
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 5px;
}

.task-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 15px;
  margin-bottom: 12px;
}

.status {
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.status.red {
  background: #ef3340;
}

.status.green {
  background: #1fb76b;
}

.status.orange {
  background: #ff9f1a;
}

.status.blue {
  background: var(--blue);
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.mini-stats div {
  background: #f6f9ff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  text-align: center;
}

.mini-stats strong {
  display: block;
  color: var(--blue);
  font-size: 28px;
}

.mini-stats small {
  color: var(--muted);
}

.phone-section-mockup {
  min-height: 450px;
  display: grid;
  place-items: center;
}

.phone-mockup.big {
  position: relative;
  right: auto;
  bottom: auto;
  width: 260px;
  height: 510px;
}

.guest-hotel {
  height: 120px;
}

.qr-section {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 50px;
  align-items: center;
}

.bar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 28px 0 32px;
}

.bar-card {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 10px 26px rgba(7, 24, 63, 0.05);
}

.bar-card.sponsor {
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.bar-card ul {
  margin: 16px 0 0;
  padding-left: 19px;
  color: var(--muted);
  line-height: 1.8;
}

.qr-demo-card {
  padding: 26px;
  text-align: center;
}

.qr-label {
  display: inline-flex;
  background: var(--navy);
  color: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 900;
  margin-bottom: 18px;
}

.fake-qr {
  width: 180px;
  height: 180px;
  margin: 0 auto 22px;
  background:
    linear-gradient(90deg, #111827 12px, transparent 12px) 0 0 / 24px 24px,
    linear-gradient(#111827 12px, transparent 12px) 0 0 / 24px 24px,
    #fff;
  border: 14px solid #fff;
  outline: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(7, 24, 63, 0.12);
  position: relative;
}

.fake-qr div {
  position: absolute;
  width: 42px;
  height: 42px;
  background: #fff;
  border: 9px solid #111827;
  border-radius: 6px;
}

.fake-qr div:nth-child(1) {
  top: 8px;
  left: 8px;
}

.fake-qr div:nth-child(2) {
  top: 8px;
  right: 8px;
}

.fake-qr div:nth-child(3) {
  bottom: 8px;
  left: 8px;
}

.fake-qr div:nth-child(4) {
  bottom: 22px;
  right: 24px;
  width: 26px;
  height: 26px;
}

.lock-card {
  min-height: 390px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 40% 25%, rgba(9, 103, 255, 0.16), transparent 32%),
    #fff;
}

.lock-body {
  width: 160px;
  height: 300px;
  border-radius: 45px;
  background: linear-gradient(145deg, #172033, #080d18);
  padding: 22px;
  box-shadow: 0 25px 42px rgba(7, 24, 63, 0.28);
}

.lock-screen {
  height: 120px;
  background: linear-gradient(135deg, #0b6bff, #003ec2);
  color: #fff;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px;
  text-align: center;
}

.lock-screen span {
  font-size: 13px;
  opacity: 0.9;
}

.lock-screen strong {
  font-size: 17px;
  margin-top: 8px;
}

.lock-handle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 44px auto 0;
  background: linear-gradient(145deg, #f1f4fa, #8e9aad);
  box-shadow: inset 0 0 0 10px #c7ceda;
}

.automation-card {
  padding: 28px;
}

.home-icon {
  width: 78px;
  height: 78px;
  border-radius: 22px;
  background: #eaf2ff;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 42px;
  margin-bottom: 22px;
}

.automation-line {
  display: flex;
  justify-content: space-between;
  border: 1px solid var(--border);
  padding: 18px;
  border-radius: 16px;
  margin-bottom: 12px;
}

.automation-line.active {
  border-color: rgba(9, 103, 255, 0.35);
  background: #f4f8ff;
}

.automation-line span {
  color: var(--muted);
}

.automation-line strong {
  color: var(--navy);
}

.contact-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(9, 103, 255, 0.1), transparent 28%),
    #f6f9ff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-options {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-option {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 26px rgba(7, 24, 63, 0.05);
}

.contact-option strong,
.contact-option span {
  display: block;
}

.contact-option span {
  color: var(--blue);
  margin-top: 4px;
}

.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 30px;
}

.contact-form label {
  display: block;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  font: inherit;
  color: var(--text);
  outline: none;
  background: #fbfcff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(9, 103, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(9, 103, 255, 0.09);
}

.form-note {
  font-size: 13px;
  color: var(--muted);
  margin: 14px 0 0;
  text-align: center;
}

.site-footer {
  background: var(--navy);
  color: #fff;
  padding: 30px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.footer-brand .brand-text strong,
.footer-brand .brand-text small {
  color: #fff;
}

@media (max-width: 1100px) {
  .header-cta {
    display: none;
  }

  .main-nav {
    gap: 18px;
    font-size: 14px;
  }

  .hero-grid,
  .two-columns,
  .contact-grid,
  .qr-section {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 560px;
  }

  .laptop-mockup {
    width: min(620px, 100%);
  }

  .building-card {
    right: 0;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .qr-demo-card {
    max-width: 360px;
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 64px 0;
  }

  .header-inner {
    height: 70px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .main-nav {
    position: fixed;
    top: 70px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 14px;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 14px;
    border-radius: 12px;
  }

  .main-nav a.active::after,
  .main-nav a:hover::after {
    display: none;
  }

  .hero {
    padding-top: 48px;
  }

  h1 {
    font-size: 42px;
    letter-spacing: -1.2px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-points {
    gap: 14px;
  }

  .hero-visual {
    min-height: 490px;
    margin-top: 20px;
  }

  .laptop-mockup {
    position: relative;
    width: 100%;
    bottom: auto;
    left: auto;
  }

  .mockup-screen {
    min-height: auto;
    padding: 15px;
  }

  .filters {
    grid-template-columns: 1fr 1fr;
  }

  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .phone-mockup {
    width: 150px;
    height: 310px;
    right: 0;
    bottom: -30px;
  }

  .building-card {
    display: none;
  }

  .cards-grid,
  .bar-grid {
    grid-template-columns: 1fr;
  }

  .solution-card p {
    min-height: auto;
  }

  .reverse-mobile > div:first-child {
    order: 2;
  }

  .mini-stats {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 460px) {
  .brand-text strong {
    font-size: 16px;
  }

  .brand-text small {
    letter-spacing: 3px;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
  }

  .phone-mockup {
    display: none;
  }

  .hero-visual {
    min-height: auto;
  }

  .laptop-mockup::after {
    display: none;
  }

  .contact-form {
    padding: 22px;
  }

}

.form-status {
  margin-top: 14px;
  padding: 13px 15px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  display: none;
}

.form-status.success,
.form-status.error,
.form-status.loading {
  display: block;
}

.form-status.success {
  color: #0a6b3d;
  background: #e8f8f0;
  border: 1px solid #bdebd2;
}

.form-status.error {
  color: #9b1c1c;
  background: #fff0f0;
  border: 1px solid #ffd0d0;
}

.form-status.loading {
  color: #0747a6;
  background: #eaf2ff;
  border: 1px solid #cfe0ff;
}

.contact-form button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.brand-image {
  gap: 0;
}

.brand-logo-img {
  display: block;
  height: 48px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
}

.footer-brand .brand-logo-img {
  height: 44px;
}

@media (max-width: 760px) {
  .brand-logo-img {
    height: 40px;
    max-width: 165px;
  }
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.hero-trust div {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 25px rgba(7, 24, 63, 0.06);
}

.hero-trust strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
  margin-bottom: 5px;
}

.hero-trust span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.hero-floating-card {
  position: absolute;
  z-index: 5;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
  max-width: 230px;
}

.hero-floating-card strong {
  display: block;
  color: var(--blue);
  font-size: 15px;
  margin-bottom: 4px;
}

.hero-floating-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.card-top {
  top: 24px;
  left: 30px;
}

.card-bottom {
  right: 30px;
  bottom: 34px;
}

@media (max-width: 760px) {
  .hero-trust {
    grid-template-columns: 1fr;
  }

  .hero-floating-card {
    display: none;
  }
}

.section-intro {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-intro.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-intro p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.cards-grid-six {
  grid-template-columns: repeat(3, 1fr);
}

.featured-card {
  background:
    radial-gradient(circle at top right, rgba(9, 103, 255, 0.12), transparent 34%),
    #ffffff;
  border-color: rgba(9, 103, 255, 0.22);
}

.contact-mini-card {
  background:
    linear-gradient(135deg, #07183f, #0c2f7a);
  border-color: transparent;
}

.contact-mini-card h3,
.contact-mini-card p,
.contact-mini-card span {
  color: #ffffff;
}

.contact-mini-card p {
  opacity: 0.82;
}

.card-icon.cyan {
  color: #007b9e;
  background: #e6faff;
}

.card-icon.dark {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
}

@media (max-width: 1100px) {
  .cards-grid-six {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .cards-grid-six {
    grid-template-columns: 1fr;
  }

  .section-intro {
    text-align: left;
  }

  .section-intro.centered {
    text-align: left;
  }
}

.domotixa-one-section {
  background:
    radial-gradient(circle at 90% 10%, rgba(9, 103, 255, 0.08), transparent 32%),
    #ffffff;
}

.domotixa-one-grid {
  align-items: start;
}

.module-list {
  display: grid;
  gap: 13px;
  margin: 30px 0;
}

.module-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 15px;
  align-items: start;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 17px;
  box-shadow: 0 10px 24px rgba(7, 24, 63, 0.045);
}

.module-item.active {
  border-color: rgba(9, 103, 255, 0.28);
  background:
    radial-gradient(circle at top right, rgba(9, 103, 255, 0.12), transparent 38%),
    #ffffff;
}

.module-item span {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: #eaf2ff;
  color: var(--blue);
  font-weight: 900;
  font-size: 13px;
}

.module-item strong {
  display: block;
  color: var(--navy);
  font-size: 16px;
  margin-bottom: 5px;
}

.module-item small {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.section-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.dashboard-preview {
  background: #07183f;
  color: #ffffff;
  border-radius: 30px;
  padding: 24px;
  box-shadow: 0 24px 60px rgba(7, 24, 63, 0.22);
  position: relative;
  overflow: hidden;
}

.dashboard-preview::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -80px;
  top: -90px;
  border-radius: 50%;
  background: rgba(9, 103, 255, 0.36);
}

.dashboard-top,
.dashboard-stats,
.dashboard-columns,
.dashboard-log {
  position: relative;
  z-index: 2;
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.dashboard-top strong,
.dashboard-top small {
  display: block;
}

.dashboard-top strong {
  font-size: 20px;
}

.dashboard-top small {
  color: rgba(255, 255, 255, 0.68);
  margin-top: 4px;
}

.dashboard-top > span {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  margin-bottom: 22px;
}

.dashboard-stats div {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 17px;
  padding: 16px;
}

.dashboard-stats strong {
  display: block;
  font-size: 28px;
  color: #ffffff;
}

.dashboard-stats span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.dashboard-columns {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 14px;
  margin-bottom: 18px;
}

.dashboard-column {
  background: #ffffff;
  color: var(--text);
  border-radius: 20px;
  padding: 16px;
}

.dashboard-column h4 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 15px;
}

.dash-room,
.dash-task {
  border-radius: 14px;
  padding: 13px;
  margin-bottom: 10px;
  background: #f5f8fc;
}

.dash-room {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dash-room strong,
.dash-task strong {
  color: var(--navy);
}

.dash-room span {
  font-size: 11px;
  color: #ffffff;
  border-radius: 999px;
  padding: 5px 8px;
  font-weight: 800;
}

.dash-room.clean span {
  background: #1fb76b;
}

.dash-room.dirty span {
  background: #ef3340;
}

.dash-room.review span {
  background: #ff9f1a;
}

.dash-task strong,
.dash-task span {
  display: block;
}

.dash-task span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.dash-task.urgent {
  border-left: 4px solid #ef3340;
}

.dashboard-log {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  padding: 14px;
}

.dashboard-log div {
  display: flex;
  gap: 9px;
  align-items: start;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 10px;
}

.dashboard-log div:last-child {
  margin-bottom: 0;
}

.dashboard-log span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4aa3ff;
  margin-top: 5px;
  flex-shrink: 0;
}

@media (max-width: 760px) {
  .section-actions {
    flex-direction: column;
  }

  .section-actions .btn {
    width: 100%;
  }

  .dashboard-stats,
  .dashboard-columns {
    grid-template-columns: 1fr;
  }

  .module-item {
    grid-template-columns: 42px 1fr;
  }
}

.portal-guest-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(9, 103, 255, 0.1), transparent 30%),
    linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%);
  overflow: hidden;
}

.portal-guest-grid {
  align-items: center;
}

.portal-phone-area {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.portal-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(9, 103, 255, 0.16), transparent 68%);
}

.portal-phone {
  z-index: 2;
  box-shadow: 0 32px 70px rgba(7, 24, 63, 0.28);
}

.portal-mini-hotel {
  margin: 10px 0;
  background: #f4f8ff;
  border: 1px solid var(--border);
  border-radius: 13px;
  padding: 10px;
}

.portal-mini-hotel span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  margin-bottom: 3px;
}

.portal-mini-hotel strong {
  display: block;
  color: var(--navy);
  font-size: 13px;
}

.phone-option.with-icon {
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-option.with-icon span {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  background: #ffffff;
  border-radius: 8px;
  flex-shrink: 0;
}

.portal-floating-note {
  position: absolute;
  z-index: 3;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
  max-width: 220px;
}

.portal-floating-note strong {
  display: block;
  color: var(--blue);
  font-size: 15px;
  margin-bottom: 5px;
}

.portal-floating-note span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.note-one {
  left: 10px;
  top: 110px;
}

.note-two {
  right: 20px;
  bottom: 120px;
}

.guest-benefits {
  display: grid;
  gap: 14px;
  margin: 28px 0;
}

.guest-benefits div {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(7, 24, 63, 0.045);
}

.guest-benefits strong {
  display: block;
  color: var(--navy);
  font-size: 17px;
  margin-bottom: 7px;
}

.guest-benefits span {
  display: block;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.portal-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.portal-features-grid div {
  background: #eef5ff;
  color: var(--navy);
  border: 1px solid #dbeaff;
  border-radius: 14px;
  padding: 13px 15px;
  font-weight: 800;
  font-size: 14px;
}

.portal-features-grid div::before {
  content: "✓";
  color: var(--blue);
  margin-right: 8px;
  font-weight: 900;
}

@media (max-width: 1100px) {
  .portal-phone-area {
    min-height: 560px;
  }

  .note-one {
    left: 40px;
  }

  .note-two {
    right: 50px;
  }
}

@media (max-width: 760px) {
  .portal-phone-area {
    min-height: auto;
    padding: 30px 0 50px;
    order: 2;
  }

  .portal-floating-note {
    display: none;
  }

  .portal-features-grid {
    grid-template-columns: 1fr;
  }

  .portal-phone {
    width: 250px;
    height: 500px;
  }
}

.real-portal-screen {
  padding: 0;
  overflow: hidden;
  background: #f3f5f9;
}

.portal-real-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  border-radius: 22px;
}

.portal-real-device {
  position: relative;
  z-index: 2;
  width: 290px;
  height: 590px;
  background: #111827;
  border-radius: 38px;
  padding: 12px;
  box-shadow: 0 32px 70px rgba(7, 24, 63, 0.28);
  overflow: hidden;
}

.portal-device-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 88px;
  height: 22px;
  background: #111827;
  border-radius: 0 0 14px 14px;
  transform: translateX(-50%);
  z-index: 4;
}

.portal-real-device .portal-real-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  border-radius: 28px;
  background: #f3f5f9;
}

@media (max-width: 760px) {
  .portal-real-device {
    width: 250px;
    height: 510px;
  }
}

.qr-bares-section {
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 159, 26, 0.14), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  overflow: hidden;
}

.qr-bares-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 58px;
  align-items: center;
}

.qr-bares-content > p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.qr-tabs-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 30px 0 32px;
}

.qr-info-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(7, 24, 63, 0.06);
}

.qr-info-card.sponsor-card {
  background:
    radial-gradient(circle at top right, rgba(255, 159, 26, 0.14), transparent 36%),
    #ffffff;
  border-color: rgba(255, 159, 26, 0.28);
}

.qr-card-badge {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: #eaf2ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.qr-card-badge.sponsor {
  background: #fff1dd;
  color: #d46b00;
}

.qr-info-card h3 {
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.qr-info-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.qr-info-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text);
  line-height: 1.85;
  font-weight: 700;
}

.qr-bares-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.qr-demo-stage {
  min-height: 620px;
  position: relative;
  display: grid;
  place-items: center;
}

.table-qr-card {
  width: 310px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 22px;
  box-shadow: 0 28px 70px rgba(7, 24, 63, 0.18);
  position: relative;
  z-index: 3;
  transform: rotate(-2deg);
}

.table-qr-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--navy);
  color: #ffffff;
  border-radius: 20px;
  padding: 14px 16px;
  margin-bottom: 20px;
}

.table-qr-top span {
  font-size: 11px;
  font-weight: 900;
  opacity: 0.72;
  letter-spacing: 0.6px;
}

.table-qr-top strong {
  font-size: 18px;
}

.table-qr-middle {
  display: grid;
  place-items: center;
  padding: 10px 0 18px;
}

.big-qr {
  width: 205px;
  height: 205px;
  margin-bottom: 0;
}

.table-qr-bottom {
  text-align: center;
}

.table-qr-bottom h3 {
  margin-bottom: 8px;
}

.table-qr-bottom p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 0;
}

.bar-mobile-preview {
  position: absolute;
  right: 0;
  bottom: 55px;
  width: 265px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 16px;
  box-shadow: var(--shadow);
  z-index: 4;
}

.bar-mobile-header {
  background:
    linear-gradient(135deg, rgba(7, 24, 63, 0.94), rgba(9, 103, 255, 0.76));
  color: #ffffff;
  border-radius: 20px;
  padding: 18px;
  margin-bottom: 14px;
}

.bar-mobile-header span,
.bar-mobile-header strong {
  display: block;
}

.bar-mobile-header span {
  font-size: 12px;
  opacity: 0.8;
  margin-bottom: 4px;
}

.bar-mobile-header strong {
  font-size: 22px;
}

.bar-mobile-option {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  align-items: center;
  background: #f6f8fc;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px;
  margin-bottom: 10px;
}

.bar-mobile-option > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: #ffffff;
}

.bar-mobile-option strong,
.bar-mobile-option small {
  display: block;
}

.bar-mobile-option strong {
  color: var(--navy);
  font-size: 13px;
}

.bar-mobile-option small {
  color: var(--muted);
  font-size: 11px;
  margin-top: 3px;
  line-height: 1.35;
}

.bar-mobile-option.promo {
  background: #fff8ed;
  border-color: #ffe0b5;
}

.qr-floating-label {
  position: absolute;
  left: 10px;
  top: 90px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
  z-index: 4;
  max-width: 190px;
}

.qr-floating-label strong {
  display: block;
  color: var(--blue);
  margin-bottom: 5px;
}

.qr-floating-label span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

@media (max-width: 1100px) {
  .qr-bares-grid {
    grid-template-columns: 1fr;
  }

  .qr-demo-stage {
    min-height: 570px;
  }

  .bar-mobile-preview {
    right: 90px;
  }

  .qr-floating-label {
    left: 90px;
  }
}

@media (max-width: 760px) {
  .qr-tabs-cards {
    grid-template-columns: 1fr;
  }

  .qr-bares-actions {
    flex-direction: column;
  }

  .qr-bares-actions .btn {
    width: 100%;
  }

  .qr-demo-stage {
    min-height: auto;
    display: block;
  }

  .table-qr-card {
    width: 100%;
    max-width: 330px;
    margin: 0 auto 24px;
    transform: none;
  }

  .bar-mobile-preview {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 330px;
    margin: 0 auto;
  }

  .qr-floating-label {
    display: none;
  }
}

.qr-bares-section {
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 159, 26, 0.14), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  overflow: hidden;
}

.qr-bares-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 58px;
  align-items: center;
}

.qr-bares-content > p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.qr-tabs-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 30px 0 32px;
}

.qr-info-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(7, 24, 63, 0.06);
}

.qr-info-card.sponsor-card {
  background:
    radial-gradient(circle at top right, rgba(255, 159, 26, 0.14), transparent 36%),
    #ffffff;
  border-color: rgba(255, 159, 26, 0.28);
}

.qr-card-badge {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: #eaf2ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.qr-card-badge.sponsor {
  background: #fff1dd;
  color: #d46b00;
}

.qr-info-card h3 {
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.qr-info-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.qr-info-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text);
  line-height: 1.85;
  font-weight: 700;
}

.qr-bares-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.real-qr-stage {
  min-height: 650px;
  position: relative;
  display: grid;
  place-items: center;
}

.qr-real-poster-wrap {
  position: absolute;
  left: 10px;
  top: 30px;
  width: 290px;
  z-index: 2;
  transform: rotate(-6deg);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(7, 24, 63, 0.14);
}

.qr-real-poster {
  width: 100%;
  display: block;
  filter: blur(0.8px) saturate(0.96);
  transform: scale(1.01);
}

.qr-protect-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.qr-real-mobile-device {
  position: absolute;
  right: 0;
  bottom: 40px;
  width: 285px;
  height: 585px;
  background: #111827;
  border-radius: 38px;
  padding: 12px;
  box-shadow: 0 32px 70px rgba(7, 24, 63, 0.28);
  z-index: 4;
  overflow: hidden;
}

.qr-real-mobile-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 88px;
  height: 22px;
  background: #111827;
  border-radius: 0 0 14px 14px;
  transform: translateX(-50%);
  z-index: 5;
}

.qr-real-mobile-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  border-radius: 28px;
  background: #f3f5f9;
}

.qr-floating-label {
  position: absolute;
  left: 36px;
  bottom: 40px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
  z-index: 5;
  max-width: 210px;
}

.qr-floating-label strong {
  display: block;
  color: var(--blue);
  margin-bottom: 5px;
}

.qr-floating-label span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

@media (max-width: 1100px) {
  .qr-bares-grid {
    grid-template-columns: 1fr;
  }

  .real-qr-stage {
    min-height: 620px;
  }

  .qr-real-poster-wrap {
    left: 70px;
  }

  .qr-real-mobile-device {
    right: 70px;
  }
}

@media (max-width: 760px) {
  .qr-tabs-cards {
    grid-template-columns: 1fr;
  }

  .qr-bares-actions {
    flex-direction: column;
  }

  .qr-bares-actions .btn {
    width: 100%;
  }

  .real-qr-stage {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: center;
  }

  .qr-real-poster-wrap,
  .qr-real-mobile-device,
  .qr-floating-label {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
  }

  .qr-real-poster-wrap {
    width: 100%;
    max-width: 280px;
  }

  .qr-real-mobile-device {
    width: 260px;
    height: 535px;
  }

  .qr-floating-label {
    max-width: 260px;
    width: 100%;
  }
}
/* QR Bares - bocadillo igual que Portal Guest */
.qr-floating-label {
  position: absolute;
  z-index: 5;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
  max-width: 220px;
  width: auto;
  height: auto;
  min-height: 0;
  left: 36px;
  bottom: 40px;
  top: auto;
  right: auto;
  display: block;
  line-height: normal;
}

.qr-floating-label strong {
  display: block;
  color: var(--blue);
  font-size: 15px;
  line-height: normal;
  margin-bottom: 5px;
}

.qr-floating-label span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

/* QR Bares - ajuste final de posición del bocadillo y nitidez del QR */
.qr-floating-label {
  left: 36px;
  bottom: 320px;
  top: auto;
  right: auto;
}

/* Menos borroso el cartel QR del fondo */
.qr-real-poster {
  filter: blur(0.15px) saturate(1);
  transform: scale(1.01);
}

/* Capa suave para que siga pareciendo decorativo */
.qr-protect-overlay {
  background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 760px) {
  .qr-floating-label {
    bottom: auto;
  }
}

/* Cerraduras inteligentes */
.locks-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(9, 103, 255, 0.08), transparent 30%),
    linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%);
  overflow: hidden;
}

.locks-grid {
  align-items: center;
}

.locks-benefits {
  display: grid;
  gap: 14px;
  margin: 28px 0;
}

.locks-benefits div {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(7, 24, 63, 0.045);
}

.locks-benefits strong {
  display: block;
  color: var(--navy);
  font-size: 17px;
  margin-bottom: 7px;
}

.locks-benefits span {
  display: block;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.locks-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.locks-features-grid div {
  background: #eef5ff;
  color: var(--navy);
  border: 1px solid #dbeaff;
  border-radius: 14px;
  padding: 13px 15px;
  font-weight: 800;
  font-size: 14px;
}

.locks-features-grid div::before {
  content: "✓";
  color: var(--blue);
  margin-right: 8px;
  font-weight: 900;
}

.locks-visual {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
}

.locks-glow {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(9, 103, 255, 0.15), transparent 68%);
}

.smart-lock-device {
  position: relative;
  z-index: 3;
  width: 210px;
  min-height: 470px;
  border-radius: 55px;
  background:
    linear-gradient(145deg, #172033, #080d18);
  padding: 24px 20px;
  box-shadow: 0 34px 70px rgba(7, 24, 63, 0.32);
}

.smart-lock-screen {
  height: 128px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.24), transparent 30%),
    linear-gradient(135deg, #0967ff, #003fcb);
  color: #ffffff;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.smart-lock-screen span,
.smart-lock-screen strong,
.smart-lock-screen small {
  display: block;
}

.smart-lock-screen span {
  opacity: 0.86;
  font-size: 13px;
  margin-bottom: 8px;
}

.smart-lock-screen strong {
  font-size: 18px;
  line-height: 1.2;
}

.smart-lock-screen small {
  opacity: 0.78;
  margin-top: 8px;
  font-size: 12px;
}

.smart-lock-keypad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  margin-top: 28px;
}

.smart-lock-keypad span {
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.11);
  font-weight: 800;
}

.smart-lock-handle {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  margin: 32px auto 0;
  background: linear-gradient(145deg, #f1f4fa, #8e9aad);
  box-shadow: inset 0 0 0 11px #c7ceda;
}

.access-card {
  position: absolute;
  z-index: 4;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
  max-width: 240px;
}

.access-card strong {
  display: block;
  color: var(--blue);
  font-size: 15px;
  margin-bottom: 5px;
}

.access-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.access-card-top {
  top: 85px;
  left: 20px;
}

.access-card-bottom {
  right: 5px;
  bottom: 115px;
}

.locks-mini-panel {
  position: absolute;
  z-index: 4;
  left: 0;
  bottom: 20px;
  width: 310px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 24px 55px rgba(7, 24, 63, 0.14);
}

.mini-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.mini-panel-header strong {
  color: var(--navy);
}

.mini-panel-header span {
  background: #eef5ff;
  color: var(--blue);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 900;
}

.mini-access-row {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px;
  border-radius: 15px;
  background: #f6f8fc;
  margin-bottom: 10px;
}

.mini-access-row:last-child {
  margin-bottom: 0;
}

.access-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 5px;
}

.access-dot.green {
  background: #1fb76b;
}

.access-dot.blue {
  background: var(--blue);
}

.access-dot.orange {
  background: #ff9f1a;
}

.mini-access-row strong,
.mini-access-row small {
  display: block;
}

.mini-access-row strong {
  color: var(--navy);
  font-size: 13px;
}

.mini-access-row small {
  color: var(--muted);
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.35;
}

@media (max-width: 1100px) {
  .locks-visual {
    min-height: 620px;
  }

  .access-card-top {
    left: 110px;
  }

  .access-card-bottom {
    right: 110px;
  }

  .locks-mini-panel {
    left: 130px;
  }
}

@media (max-width: 760px) {
  .locks-features-grid {
    grid-template-columns: 1fr;
  }

  .locks-visual {
    min-height: auto;
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .access-card,
  .locks-mini-panel {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    max-width: 310px;
  }

  .smart-lock-device {
    width: 200px;
    min-height: 450px;
  }
}

/* Cerraduras con imagen real */
.real-locks-visual {
  min-height: 700px;
}

.locks-real-device {
  position: relative;
  z-index: 3;
  width: 290px;
  height: 610px;
  background: #111827;
  border-radius: 38px;
  padding: 12px;
  box-shadow: 0 32px 70px rgba(7, 24, 63, 0.28);
  overflow: hidden;
}

.locks-real-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 88px;
  height: 22px;
  background: #111827;
  border-radius: 0 0 14px 14px;
  transform: translateX(-50%);
  z-index: 5;
}

.locks-real-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  border-radius: 28px;
  background: #f3f5f9;
}

@media (max-width: 1100px) {
  .real-locks-visual {
    min-height: 650px;
  }

  .access-card-top {
    left: 90px;
  }

  .access-card-bottom {
    right: 90px;
  }

  .locks-mini-panel {
    left: 110px;
  }
}

@media (max-width: 760px) {
  .real-locks-visual {
    min-height: auto;
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .locks-real-device {
    width: 260px;
    height: 545px;
  }
}

/* Domótica */
.automation-section {
  background:
    radial-gradient(circle at 82% 18%, rgba(9, 103, 255, 0.08), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  overflow: hidden;
}

.automation-grid {
  align-items: center;
}

.automation-visual {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
}

.automation-glow {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(9, 103, 255, 0.14), transparent 68%);
}

.automation-main-card {
  position: relative;
  z-index: 3;
  width: 420px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 24px;
  box-shadow: 0 32px 70px rgba(7, 24, 63, 0.16);
}

.automation-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}

.automation-card-header strong,
.automation-card-header span {
  display: block;
}

.automation-card-header strong {
  color: var(--navy);
  font-size: 19px;
}

.automation-card-header span {
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}

.automation-card-header small {
  display: inline-flex;
  background: #e8f8f0;
  color: #0a9f5b;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 900;
}

.automation-scene {
  min-height: 210px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 70% 30%, rgba(9, 103, 255, 0.13), transparent 36%),
    linear-gradient(135deg, #eef5ff, #ffffff);
  border: 1px solid #dbeaff;
  display: grid;
  place-items: center;
  position: relative;
  margin-bottom: 22px;
}

.automation-house-icon {
  width: 95px;
  height: 95px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  background: #ffffff;
  color: var(--blue);
  font-size: 52px;
  box-shadow: 0 16px 34px rgba(7, 24, 63, 0.09);
}

.energy-saving-ring {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 105px;
  height: 105px;
  border-radius: 50%;
  background:
    conic-gradient(var(--blue) 0 83deg, #e4eaf5 83deg 360deg);
  display: grid;
  place-items: center;
  padding: 8px;
}

.energy-saving-ring::before {
  content: "";
  position: absolute;
  inset: 8px;
  background: #ffffff;
  border-radius: 50%;
}

.energy-saving-ring strong,
.energy-saving-ring span {
  position: relative;
  z-index: 2;
  display: block;
  text-align: center;
}

.energy-saving-ring strong {
  color: var(--navy);
  font-size: 22px;
  line-height: 1;
}

.energy-saving-ring span {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.15;
  margin-top: -18px;
}

.automation-status-list {
  display: grid;
  gap: 12px;
}

.automation-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f6f8fc;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 15px;
}

.automation-status.active {
  background: #fff8ed;
  border-color: #ffe0b5;
}

.automation-status.off {
  background: #eaf2ff;
  border-color: #cfe0ff;
}

.automation-status span {
  color: var(--muted);
  font-size: 14px;
}

.automation-status strong {
  color: var(--navy);
  font-size: 14px;
}

.automation-floating-card {
  position: absolute;
  z-index: 4;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
  max-width: 235px;
}

.automation-floating-card strong {
  display: block;
  color: var(--blue);
  font-size: 15px;
  margin-bottom: 5px;
}

.automation-floating-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.auto-card-one {
  top: 90px;
  left: 5px;
}

.auto-card-two {
  right: 5px;
  bottom: 95px;
}

.automation-benefits {
  display: grid;
  gap: 14px;
  margin: 28px 0;
}

.automation-benefits div {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(7, 24, 63, 0.045);
}

.automation-benefits strong {
  display: block;
  color: var(--navy);
  font-size: 17px;
  margin-bottom: 7px;
}

.automation-benefits span {
  display: block;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.automation-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.automation-features-grid div {
  background: #eef5ff;
  color: var(--navy);
  border: 1px solid #dbeaff;
  border-radius: 14px;
  padding: 13px 15px;
  font-weight: 800;
  font-size: 14px;
}

.automation-features-grid div::before {
  content: "✓";
  color: var(--blue);
  margin-right: 8px;
  font-weight: 900;
}

@media (max-width: 1100px) {
  .automation-visual {
    min-height: 620px;
  }

  .auto-card-one {
    left: 90px;
  }

  .auto-card-two {
    right: 90px;
  }
}

@media (max-width: 760px) {
  .automation-visual {
    min-height: auto;
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .automation-main-card {
    width: 100%;
    max-width: 420px;
  }

  .automation-floating-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    max-width: 420px;
    width: 100%;
  }

  .automation-features-grid {
    grid-template-columns: 1fr;
  }

  .energy-saving-ring {
    width: 94px;
    height: 94px;
  }
}

/* Contacto mejorado */
.contact-header {
  max-width: 780px;
  margin: 0 auto 44px;
  text-align: center;
}

.contact-header p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.contact-info-panel {
  background:
    radial-gradient(circle at top right, rgba(9, 103, 255, 0.12), transparent 34%),
    #ffffff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.contact-info-panel h3 {
  font-size: 26px;
  margin-bottom: 22px;
}

.contact-info-list {
  display: grid;
  gap: 13px;
}

.contact-info-list div {
  background: #f6f8fc;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
}

.contact-info-list strong,
.contact-info-list span {
  display: block;
}

.contact-info-list strong {
  color: var(--navy);
  font-size: 15px;
  margin-bottom: 5px;
}

.contact-info-list span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 760px) {
  .contact-header {
    text-align: left;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* Domótica con imagen real */
.real-automation-visual {
  min-height: 700px;
}

.automation-real-device {
  position: relative;
  z-index: 3;
  width: 290px;
  height: 610px;
  background: #111827;
  border-radius: 38px;
  padding: 12px;
  box-shadow: 0 32px 70px rgba(7, 24, 63, 0.28);
  overflow: hidden;
}

.automation-real-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 88px;
  height: 22px;
  background: #111827;
  border-radius: 0 0 14px 14px;
  transform: translateX(-50%);
  z-index: 5;
}

.automation-real-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  border-radius: 28px;
  background: #f3f5f9;
}

@media (max-width: 1100px) {
  .real-automation-visual {
    min-height: 650px;
  }

  .auto-card-one {
    left: 90px;
  }

  .auto-card-two {
    right: 90px;
  }
}

@media (max-width: 760px) {
  .real-automation-visual {
    min-height: auto;
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .automation-real-device {
    width: 260px;
    height: 545px;
  }

  .automation-floating-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    max-width: 420px;
  }
}

/* Hero - imágenes reales monitor y móvil */
.hero-monitor-real-screen {
  padding: 0;
  overflow: hidden;
  background: #eef3fa;
}

.hero-monitor-real-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.hero-phone-real-screen {
  padding: 0;
  overflow: hidden;
  background: #f3f5f9;
}

.hero-phone-real-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  border-radius: 22px;
}

/* Ajuste fino del móvil del hero */
.hero-phone-real {
  box-shadow: 0 24px 60px rgba(7, 24, 63, 0.22);
}

/* Domotixa One con imagen real */
.domotixa-one-section {
  background:
    radial-gradient(circle at 82% 18%, rgba(9, 103, 255, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  overflow: hidden;
}

.domotixa-one-grid {
  align-items: center;
}

.domotixa-one-feature-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 32px;
}

.domotixa-one-feature-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 14px 16px;
  box-shadow: 0 10px 24px rgba(7, 24, 63, 0.04);
}

.feature-number {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #eef5ff;
  color: var(--blue);
  font-weight: 900;
  font-size: 16px;
}

.domotixa-one-feature-item strong,
.domotixa-one-feature-item span {
  display: block;
}

.domotixa-one-feature-item strong {
  color: var(--navy);
  font-size: 16px;
  margin-bottom: 4px;
}

.domotixa-one-feature-item span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.domotixa-one-visual {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
}

.domotixa-one-glow {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(9, 103, 255, 0.13), transparent 68%);
}

.domotixa-one-image-card {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 760px;
  background: #ffffff;
  border: 1px solid #dfe7f3;
  border-radius: 30px;
  padding: 16px;
  box-shadow: 0 30px 70px rgba(7, 24, 63, 0.16);
}

.domotixa-one-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 22px;
}

.domotixa-one-floating-note {
  position: absolute;
  z-index: 4;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
  max-width: 220px;
}

.domotixa-one-floating-note strong {
  display: block;
  color: var(--blue);
  font-size: 15px;
  margin-bottom: 5px;
}

.domotixa-one-floating-note span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.domotixa-one-floating-note.note-top {
  top: 40px;
  left: -10px;
}

.domotixa-one-floating-note.note-bottom {
  right: -10px;
  bottom: 65px;
}

@media (max-width: 1100px) {
  .domotixa-one-visual {
    min-height: 640px;
  }

  .domotixa-one-floating-note.note-top {
    left: 40px;
  }

  .domotixa-one-floating-note.note-bottom {
    right: 40px;
  }
}

@media (max-width: 760px) {
  .domotixa-one-feature-item {
    grid-template-columns: 48px 1fr;
  }

  .domotixa-one-visual {
    min-height: auto;
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .domotixa-one-image-card {
    padding: 10px;
    border-radius: 22px;
  }

  .domotixa-one-image {
    border-radius: 16px;
  }

  .domotixa-one-floating-note {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 420px;
  }
}

/* Iconos contacto */
.contact-option-with-icon {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
}

.contact-channel-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-channel-icon svg {
  display: block;
  fill: currentColor;
}

.email-icon {
  background: #eaf2ff;
  color: var(--blue);
}

.whatsapp-icon {
  background: #e8f8f0;
  color: #25d366;
}

.contact-channel-text strong,
.contact-channel-text span {
  display: block;
}

.contact-channel-text strong {
  color: var(--navy);
}

.contact-channel-text span {
  color: var(--blue);
  margin-top: 4px;
}

.contact-option-with-icon:hover .contact-channel-icon {
  transform: scale(1.04);
}

.contact-channel-icon {
  transition: transform 0.2s ease;
}

/* =========================================================
   OPTIMIZACIÓN MÓVIL FINAL - DOMOTIXA WEB 1.0
   ========================================================= */

@media (max-width: 760px) {
  html,
  body {
    overflow-x: hidden;
  }

  body {
    font-size: 15px;
  }

  .container {
    width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  h1 {
    font-size: 38px;
    line-height: 1.05;
  }

  h2 {
    font-size: 30px;
    line-height: 1.12;
  }

  h3 {
    font-size: 22px;
  }

  p {
    font-size: 16px;
  }

  .hero {
    padding-top: 110px;
  }

  .hero-grid,
  .two-columns,
  .qr-bares-grid,
  .domotixa-one-grid,
  .portal-guest-grid,
  .locks-grid,
  .automation-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-content {
    text-align: left;
  }

  .hero-lead {
    font-size: 17px;
    line-height: 1.6;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .btn,
  .section-actions .btn,
  .qr-bares-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-trust {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 26px;
  }

  .hero-visual {
    min-height: auto;
    padding-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .hero-floating-card {
    display: none;
  }

  .laptop-mockup {
    width: 100%;
    max-width: 100%;
    transform: none;
    margin: 0 auto;
  }

  .mockup-screen {
    min-height: 250px;
  }

  .hero-monitor-real-screen {
    min-height: 250px;
  }

  .hero-monitor-real-img {
    object-fit: cover;
    object-position: top center;
  }

  .hero .phone-mockup,
  .hero-phone-real {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    top: auto;
    width: 230px;
    height: 460px;
    margin: 0 auto;
    transform: none;
  }

  .cards-grid,
  .cards-grid-six,
  .bar-grid,
  .qr-tabs-cards,
  .portal-features-grid,
  .locks-features-grid,
  .automation-features-grid,
  .dashboard-stats,
  .dashboard-columns,
  .form-row {
    grid-template-columns: 1fr;
  }

  .solution-card,
  .qr-info-card,
  .bar-card,
  .guest-benefits div,
  .locks-benefits div,
  .automation-benefits div,
  .contact-info-panel,
  .contact-form {
    border-radius: 22px;
  }

  .domotixa-one-visual,
  .portal-phone-area,
  .real-qr-stage,
  .real-locks-visual,
  .real-automation-visual,
  .locks-visual,
  .automation-visual {
    min-height: auto;
    padding-top: 18px;
  }

  .domotixa-one-image-card {
    width: 100%;
    padding: 8px;
    border-radius: 22px;
  }

  .domotixa-one-image {
    border-radius: 16px;
  }

  .domotixa-one-floating-note,
  .portal-floating-note,
  .automation-floating-card,
  .access-card,
  .locks-mini-panel,
  .qr-floating-label {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .portal-real-device,
  .locks-real-device,
  .automation-real-device,
  .qr-real-mobile-device {
    width: 250px;
    height: 520px;
    margin: 0 auto;
  }

  .qr-real-poster-wrap {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .real-qr-stage {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .contact-header {
    text-align: left;
    margin-bottom: 30px;
  }

  .contact-header p {
    font-size: 16px;
  }

  .contact-info-panel,
  .contact-form {
    padding: 22px;
  }

  .contact-options {
    grid-template-columns: 1fr;
  }

  .contact-option-with-icon {
    grid-template-columns: 44px 1fr;
  }

  .contact-channel-icon {
    width: 44px;
    height: 44px;
  }

  .site-footer {
    text-align: center;
  }

  .footer-inner {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 27px;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .btn {
    padding-left: 18px;
    padding-right: 18px;
  }

  .portal-real-device,
  .locks-real-device,
  .automation-real-device,
  .qr-real-mobile-device {
    width: 235px;
    height: 500px;
  }

  .hero .phone-mockup,
  .hero-phone-real {
    width: 220px;
    height: 445px;
  }

  .mockup-screen,
  .hero-monitor-real-screen {
    min-height: 220px;
  }
}

/* Fix móvil Domotixa One - notas debajo de la imagen */
@media (max-width: 760px) {
  .domotixa-one-visual {
    min-height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
    align-items: center !important;
    padding-top: 20px !important;
  }

  .domotixa-one-image-card {
    order: 1;
    width: 100% !important;
    max-width: 420px !important;
    margin: 0 auto !important;
  }

  .domotixa-one-floating-note,
  .domotixa-one-floating-note.note-top,
  .domotixa-one-floating-note.note-bottom {
    order: 2;
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    width: 100% !important;
    max-width: 420px !important;
    margin: 0 auto !important;
    transform: none !important;
  }

  .domotixa-one-floating-note.note-bottom {
    order: 3;
  }
}