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

:root {
  --bg: #f6f6fa;
  --surface: #ffffff;
  --surface-alt: #efeff7;
  --ink: #2e2c62;
  --ink-soft: #4a4a77;
  --line: #dddded;
  --brand: #3f3c91;
  --brand-2: #322f76;
  --accent: #22c3c7;
  --app-bg: #f2f0ef;
  --app-ink: #342130;
  --app-action: #3f0719;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow-sm: 0 12px 28px rgba(8, 28, 45, 0.1);
  --shadow-lg: 0 24px 60px rgba(9, 44, 73, 0.2);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(248, 252, 252, 0.9);
  border-bottom: 1px solid rgba(213, 226, 232, 0.9);
}

.nav-row {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.2rem 0.7rem 0.2rem 0.2rem;
}

.brand-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 11px;
  padding: 0.25rem;
  border: 1px solid #dbe5ee;
}

.brand-text {
  font-family: 'Manrope', sans-serif;
  font-size: 1.05rem;
  color: #0f355a;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links a {
  color: var(--ink-soft);
  padding: 0.45rem 0.6rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.96rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
  background: #ebeafd;
}

.menu-toggle {
  border: 1px solid var(--line);
  background: #fff;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: none;
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  font-weight: 700;
  padding: 0.7rem 1.2rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: var(--brand);
  box-shadow: 0 14px 30px rgba(63, 60, 145, 0.24);
}

.btn-secondary {
  border-color: #bed0dc;
  color: var(--ink);
  background: #fff;
}

.hero {
  padding: 5rem 0 3rem;
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  margin: 0;
  color: var(--brand-2);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.hero h1,
.page-hero h1 {
  margin: 0.8rem 0 1rem;
  font-size: clamp(2rem, 4.8vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-family: 'Manrope', sans-serif;
}

.page-hero {
  padding-bottom: 2rem;
}

.lead {
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  color: var(--ink-soft);
  max-width: 64ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.8rem 0 1.2rem;
}

.support-note {
  color: #426078;
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  background: linear-gradient(145deg, #3f3c91, #2f2d72);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  color: #e6f1ff;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-visual::before,
.hero-visual::after {
  content: '';
  position: absolute;
  border-radius: 999px;
}

.hero-visual::before {
  width: 190px;
  height: 190px;
  right: -44px;
  top: -58px;
  background: rgba(34, 195, 199, 0.45);
}

.hero-visual::after {
  width: 150px;
  height: 150px;
  left: -32px;
  bottom: -46px;
  background: rgba(255, 255, 255, 0.2);
}

.phone-shell {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 1rem;
  background: rgba(3, 7, 18, 0.58);
}

.phone-shell h3 {
  margin: 0 0 0.4rem;
}

.message {
  background: rgba(130, 171, 202, 0.2);
  border: 1px solid rgba(219, 234, 254, 0.2);
  border-radius: 12px;
  padding: 0.7rem;
  margin-top: 0.65rem;
  font-size: 0.92rem;
}

.section {
  padding: 2.5rem 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(239, 239, 247, 0.5), rgba(239, 239, 247, 0.9));
  border-block: 1px solid rgba(221, 221, 237, 0.7);
}

.section-head {
  margin-bottom: 1.2rem;
}

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

.section h2 {
  margin: 0.2rem 0 0.5rem;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.15;
}

.muted {
  color: #555583;
}

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

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

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

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.1rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 36px rgba(16, 32, 54, 0.12);
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.08rem;
}

.kpi {
  text-align: center;
}

.kpi .value {
  display: block;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 800;
  line-height: 1.06;
  color: var(--brand-2);
}

.teal {
  color: var(--accent);
}

.iris-hero {
  padding-top: 4.2rem;
}

.split-feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.photo-phone-wrap {
  position: relative;
  min-height: 420px;
}

.feature-photo {
  width: 100%;
  max-width: 600px;
  border-radius: 20px;
  min-height: 360px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.phone-mock {
  position: absolute;
  right: -14px;
  bottom: -24px;
  width: 230px;
  height: 460px;
  border-radius: 32px;
  background: #f7f7fb;
  border: 1px solid #d7d8ea;
  box-shadow: 0 20px 36px rgba(50, 47, 118, 0.22);
  padding: 0.8rem;
}

.phone-notch {
  width: 74px;
  height: 6px;
  border-radius: 999px;
  background: #c8cae2;
  margin: 0.2rem auto 0.65rem;
}

.phone-screen {
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid #e3e4f2;
  height: calc(100% - 1.4rem);
  overflow: hidden;
}

.phone-top {
  text-align: center;
  padding: 0.8rem 0.5rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  border-bottom: 1px solid #ececf6;
}

.phone-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.45rem;
  padding: 0.65rem;
}

.phone-grid span {
  display: grid;
  place-items: center;
  min-height: 74px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #454376;
  border: 1px solid #e6e6f2;
  background: linear-gradient(180deg, #fcfcff, #f4f4fb);
}

.trust-section {
  text-align: center;
  padding-top: 1.6rem;
}

.trust-title {
  margin: 0 0 1.1rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.logo-iris {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.logo-iris span {
  background: transparent;
  border: 0;
  font-size: 1.35rem;
  font-weight: 700;
  color: #4a4885;
}

.section-iris-dark {
  background: #3f3c91;
  color: #f7f7ff;
}

.section-iris-dark p {
  color: #f0f0fc;
}

.split-dark {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.teal-underline {
  text-decoration: underline;
  text-decoration-thickness: 6px;
  text-underline-offset: 10px;
  text-decoration-color: var(--accent);
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.75rem;
}

.logo-strip span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem 0.6rem;
  text-align: center;
  color: #4e677f;
  font-weight: 600;
}

.text-link {
  display: inline-block;
  margin-top: 0.35rem;
  font-weight: 700;
  color: var(--brand-2);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.spotlight,
.qr-demo {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 1.2rem;
  box-shadow: var(--shadow-sm);
}

.video-placeholder,
.qr-tile,
.feature-tile {
  border-radius: 16px;
  background: linear-gradient(140deg, #0f223a 0%, #0d4b7d 60%, #0a8f82 100%);
  color: #e8f6ff;
  min-height: 170px;
  padding: 1rem;
  display: grid;
  place-content: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.video-placeholder p,
.qr-tile,
.feature-tile {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.video-placeholder span {
  opacity: 0.85;
}

.feature-stack {
  display: grid;
  gap: 1rem;
}

.feature-row {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.feature-row.reverse {
  grid-template-columns: 0.75fr 1.25fr;
}

.timeline {
  border-left: 3px solid #afd3cc;
  padding-left: 1rem;
  margin-left: 0.35rem;
}

.timeline-item {
  position: relative;
  padding: 0.2rem 0 1rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.4rem;
  top: 0.45rem;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: #dcf1ef;
  color: #0b6d64;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 0.95rem 1rem;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0;
  padding: 0 1rem 1rem;
  color: var(--ink-soft);
}

.demo-form {
  display: grid;
  gap: 0.32rem;
}

.demo-form input,
.demo-form textarea {
  width: 100%;
  margin: 0 0 0.5rem;
  padding: 0.7rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.demo-form label {
  font-weight: 600;
  color: #1a3956;
}

.booking-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
  align-items: start;
}

.booking-form {
  display: grid;
  gap: 0.55rem;
}

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

.booking-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 0.7rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.booking-form textarea {
  margin-bottom: 0.4rem;
}

.booking-feedback {
  min-height: 1.4rem;
  margin: 0;
  font-weight: 600;
  color: #25753b;
}

.booking-side {
  display: grid;
  gap: 0.8rem;
}

.room-card strong {
  color: var(--brand-2);
}

.hotel-choice img {
  width: 100%;
  height: 145px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 0.55rem;
}

.hotel-choice .btn {
  margin-top: 0.7rem;
}

.booking-history {
  margin-top: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.booking-history h3 {
  margin: 0 0 0.3rem;
}

.booking-table-wrap {
  overflow-x: auto;
}

.booking-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.5rem;
  font-size: 0.92rem;
}

.booking-table th,
.booking-table td {
  text-align: left;
  border-bottom: 1px solid var(--line);
  padding: 0.55rem 0.45rem;
}

.booking-table th {
  font-weight: 700;
  color: var(--brand-2);
}

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

.gallery-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.gallery-caption {
  padding: 0.85rem;
}

.gallery-caption h3 {
  margin: 0 0 0.35rem;
}

.gallery-caption p {
  margin: 0;
  color: var(--ink-soft);
}

.app-style-zone {
  background: linear-gradient(180deg, #f8f7f6 0%, var(--app-bg) 100%);
}

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

.app-screen-card {
  background: #ffffff;
  border: 1px solid #e6dedd;
  border-radius: 22px;
  padding: 0.65rem;
  box-shadow: 0 14px 26px rgba(40, 25, 33, 0.1);
}

.app-screen-card img {
  width: 100%;
  border-radius: 16px;
  background: #f3f3f5;
}

.app-screen-card h3 {
  margin: 0.55rem 0 0.2rem;
  color: var(--app-ink);
  font-family: 'Manrope', sans-serif;
  font-size: 0.98rem;
  text-align: center;
}

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

.app-mini-card {
  background: #fff;
  border: 1px solid #e8e1df;
  border-radius: 20px;
  padding: 0.55rem;
  box-shadow: 0 14px 24px rgba(57, 20, 34, 0.09);
}

.app-mini-card img {
  width: 100%;
  border-radius: 14px;
}

.app-mini-card p {
  margin: 0.45rem 0 0.15rem;
  text-align: center;
  color: #4a3441;
  font-weight: 600;
  font-size: 0.86rem;
}

.cta-block {
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: #ecfeff;
  background: linear-gradient(140deg, #3f3c91 0%, #322f76 58%, #272557 100%);
  box-shadow: var(--shadow-lg);
}

.cta-block h2 {
  margin-top: 0;
}

.site-footer {
  margin-top: 3rem;
  padding: 2.2rem 0;
  border-top: 1px solid var(--line);
  color: #426078;
}

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

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

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

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

@media (max-width: 980px) {
  .hero-wrap,
  .grid-3,
  .grid-2,
  .two-col,
  .split-feature,
  .split-dark,
  .booking-layout,
  .hotel-gallery,
  .app-screen-grid,
  .app-flow-strip,
  .feature-row,
  .feature-row.reverse {
    grid-template-columns: 1fr;
  }

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

  .phone-mock {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -2rem 0 0 auto;
  }

  .hero {
    padding-top: 3.6rem;
  }

  .site-header.open .nav-links {
    display: grid;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 74px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0.8rem;
    box-shadow: var(--shadow-sm);
  }
}

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

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

  .btn {
    width: 100%;
  }

  .cta-block {
    padding: 1.2rem;
  }

  .brand {
    padding: 0.18rem 0.55rem 0.18rem 0.18rem;
    gap: 0.55rem;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand-text {
    font-size: 0.95rem;
  }

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

  .logo-iris {
    grid-template-columns: 1fr;
  }

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