/* Results Maker System — Office-style page */

:root {
  --office: #056066;
  --office-dark: #03474c;
  --office-deep: #02383c;
  --office-mid: #0b8e98;
  --office-accent: #f4a62a;
  --office-coral: #e97e7b;
  --office-ink: #102a2d;
  --office-muted: #5c7072;
  --office-warm: #f7fbfa;
  --office-max: 1080px;
}

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

html {
  scroll-behavior: smooth;
}

body.ishi-rms {
  margin: 0;
  min-height: 100vh;
  font-family: Poppins, Inter, "Segoe UI", system-ui, sans-serif;
  color: var(--office-ink);
  background:
    radial-gradient(ellipse 80% 50% at 0% 0%, rgba(11, 142, 152, 0.1), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 8%, rgba(244, 166, 42, 0.08), transparent 50%),
    linear-gradient(180deg, var(--office-warm) 0%, #fff 18%, #fff 100%);
  -webkit-font-smoothing: antialiased;
}

.ishi-rms a {
  color: inherit;
}

.ishi-rms-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--office);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.ishi-rms-skip:focus {
  left: 1rem;
  top: 1rem;
}

.ishi-rms-top {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  padding: 0.85rem clamp(1rem, 4vw, 2rem);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(5, 96, 102, 0.1);
}

.ishi-rms-back {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--office);
}

.ishi-rms-back:hover {
  color: var(--office-mid);
}

.ishi-rms-wrap {
  width: min(var(--office-max), calc(100% - 2rem));
  margin: 0 auto;
}

.ishi-rms-hero {
  padding: clamp(2rem, 5vw, 3.25rem) 0 clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
}

.ishi-rms-hero__logo {
  display: block;
  width: min(280px, 70vw);
  height: auto;
  margin: 0 auto 1.25rem;
}

.ishi-rms-kicker {
  margin: 0 0 0.45rem;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--office-accent);
}

.ishi-rms-title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.45rem, 3.4vw, 2.15rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--office-deep);
}

.ishi-rms-hero h1.ishi-rms-title {
  font-size: clamp(1.65rem, 4vw, 2.45rem);
}

.ishi-rms-sub {
  margin: 0 auto 1.25rem;
  max-width: 40rem;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--office-mid);
}

.ishi-rms-copy {
  max-width: 46rem;
  margin: 0 auto;
  text-align: left;
}

.ishi-rms-copy p,
.ishi-rms-section p {
  margin: 0 0 1rem;
  font-size: 1.02rem;
  line-height: 1.7;
}

.ishi-rms-copy p:last-of-type,
.ishi-rms-section p:last-child {
  margin-bottom: 0;
}

.ishi-rms-copy strong,
.ishi-rms-section strong {
  color: var(--office-deep);
}

.ishi-rms-note {
  margin: 1.1rem 0 0 !important;
  font-size: 0.98rem !important;
  font-weight: 600;
  color: var(--office-muted) !important;
}

.ishi-rms-quote {
  margin: 1.1rem 0 !important;
  font-size: 1.12rem !important;
  font-weight: 800 !important;
  color: var(--office-deep) !important;
}

.ishi-rms-stack {
  margin: 0.85rem 0 1.1rem;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.55;
  color: var(--office);
}

.ishi-rms-section {
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.ishi-rms-section--warm {
  background: linear-gradient(180deg, rgba(5, 96, 102, 0.04), transparent);
}

.ishi-rms-list {
  margin: 1rem 0 1.25rem;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.5rem;
  width: 100%;
}

.ishi-rms-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0.7rem 0.95rem;
  background: #fff;
  border: 1px solid rgba(5, 96, 102, 0.1);
  border-radius: 12px;
  font-size: 0.98rem;
  line-height: 1.45;
  text-align: left;
  box-shadow: 0 6px 16px rgba(16, 42, 45, 0.03);
}

.ishi-rms-list li::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--office-accent);
}

.ishi-rms-list--coral li::before {
  background: var(--office-coral);
}

.ishi-rms-ads {
  margin: 1rem 0 1.25rem;
  padding: 1.1rem 1.2rem;
  border-radius: 16px;
  background: rgba(233, 126, 123, 0.1);
  border: 1px solid rgba(233, 126, 123, 0.22);
  font-weight: 600;
  line-height: 1.55;
  color: var(--office-deep);
}

.ishi-rms-ads p {
  margin: 0 0 0.45rem !important;
  font-size: 0.98rem !important;
}

.ishi-rms-ads p:last-child {
  margin-bottom: 0 !important;
}

.ishi-rms-grid2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 1rem 0;
}

.ishi-rms-chip {
  padding: 0.8rem 1rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(5, 96, 102, 0.12);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--office-deep);
  box-shadow: 0 6px 16px rgba(16, 42, 45, 0.03);
}

.ishi-rms-dream {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 1rem 0 1.25rem;
}

.ishi-rms-dream li {
  list-style: none;
  padding: 0.75rem 0.95rem;
  border-radius: 12px;
  background: rgba(5, 96, 102, 0.06);
  border: 1px solid rgba(5, 96, 102, 0.1);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--office-deep);
}

.ishi-rms-results {
  margin: 1.25rem 0 0;
  padding: 1.25rem;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--office-deep), var(--office));
  color: #fff;
}

.ishi-rms-results h3 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--office-accent);
}

.ishi-rms-results p {
  margin: 0 0 0.75rem;
  color: rgba(255, 255, 255, 0.92);
}

.ishi-rms-results .ishi-rms-list li {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: none;
}

.ishi-rms-results .ishi-rms-list li::before {
  background: var(--office-accent);
}

.ishi-rms-income {
  margin: 1rem 0 0;
  display: grid;
  gap: 0.45rem;
}

.ishi-rms-income span {
  display: block;
  font-weight: 700;
  color: #fff;
}

/* Pillars */
.ishi-rms-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.ishi-rms-pillar {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(5, 96, 102, 0.12);
  box-shadow: 0 12px 28px rgba(7, 63, 67, 0.06);
}

.ishi-rms-pillar__media {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--office-warm);
}

.ishi-rms-pillar__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ishi-rms-pillar__body {
  padding: 1.15rem 1.1rem 1.25rem;
}

.ishi-rms-pillar__label {
  margin: 0 0 0.25rem;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--office-accent);
}

.ishi-rms-pillar h3 {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--office-deep);
}

.ishi-rms-pillar p {
  margin: 0 0 0.65rem;
  font-size: 0.94rem;
  line-height: 1.55;
}

.ishi-rms-pillar p:last-child {
  margin-bottom: 0;
}

.ishi-rms-diagram {
  display: block;
  width: min(720px, 100%);
  height: auto;
  margin: 1.25rem auto 0;
}

.ishi-rms-inside {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.ishi-rms-panel {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 1.35rem 1.25rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(5, 96, 102, 0.12);
  box-shadow: 0 12px 28px rgba(7, 63, 67, 0.06);
  text-align: left;
}

.ishi-rms-panel__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--office-accent);
}

.ishi-rms-panel h3 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--office-deep);
}

.ishi-rms-panel p,
.ishi-rms-panel .ishi-rms-list {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.ishi-rms-panel--teal {
  background: linear-gradient(160deg, var(--office-deep), var(--office));
  border: 0;
  color: #fff;
}

.ishi-rms-panel--teal h3,
.ishi-rms-panel--teal .ishi-rms-panel__eyebrow {
  color: var(--office-accent);
}

.ishi-rms-panel--teal p,
.ishi-rms-panel--teal strong,
.ishi-rms-panel--teal .ishi-rms-stack,
.ishi-rms-section .ishi-rms-panel--teal p,
.ishi-rms-section .ishi-rms-panel--teal strong,
.ishi-rms-section .ishi-rms-panel--teal .ishi-rms-stack {
  color: #fff !important;
}

.ishi-rms-panel--teal .ishi-rms-list {
  margin: 0.85rem 0 1rem;
}

.ishi-rms-panel--teal .ishi-rms-list li {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
  box-shadow: none;
}

.ishi-rms-panel--teal .ishi-rms-list li::before {
  background: var(--office-accent);
}

.ishi-rms-section .ishi-rms-results strong,
.ishi-rms-section .ishi-rms-cta strong,
.ishi-rms-cta strong {
  color: #fff !important;
}

.ishi-rms-who {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 1rem 0;
}

.ishi-rms-who span {
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(5, 96, 102, 0.12);
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
  color: var(--office-deep);
}

.ishi-rms-align {
  margin-top: 1rem;
  padding: 1.35rem 1.25rem;
  border-radius: 18px;
  background: rgba(5, 96, 102, 0.06);
  border: 1px solid rgba(5, 96, 102, 0.1);
}

.ishi-rms-cta {
  margin: clamp(1.5rem, 4vw, 2.5rem) auto;
  width: min(var(--office-max), calc(100% - 2rem));
  padding: clamp(1.75rem, 4vw, 2.6rem);
  border-radius: 24px;
  text-align: center;
  background: linear-gradient(135deg, var(--office-deep) 0%, var(--office) 55%, var(--office-mid) 100%);
  color: #fff;
  box-shadow: 0 22px 50px rgba(7, 63, 67, 0.16);
}

.ishi-rms-cta .ishi-rms-kicker {
  color: var(--office-accent);
}

.ishi-rms-cta h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800;
}

.ishi-rms-cta p {
  margin: 0 auto 0.65rem;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.65;
}

.ishi-rms-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.35rem;
}

.ishi-rms-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.45rem;
  border-radius: 999px;
  background: var(--office-accent);
  color: #1f1605 !important;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(244, 166, 42, 0.28);
  transition: transform 0.15s ease, background 0.15s ease;
}

.ishi-rms-btn:hover {
  transform: translateY(-1px);
  background: #ffb43a;
}

.ishi-rms-btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: none;
}

.ishi-rms-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.ishi-rms-foot {
  padding: 1.5rem 1rem 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--office-muted);
}

.whatsapp-float {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 50;
  display: block;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.06);
}

.whatsapp-icon {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .ishi-rms-pillars,
  .ishi-rms-inside,
  .ishi-rms-who,
  .ishi-rms-grid2,
  .ishi-rms-dream {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 701px) and (max-width: 900px) {
  .ishi-rms-who,
  .ishi-rms-dream,
  .ishi-rms-grid2 {
    grid-template-columns: 1fr 1fr;
  }
}
