:root {
  --bg1: #0c5d7b;
  --bg2: #1f6f93;
  --bg3: #4f95ba;
  --text: #f4f8fd;
  --muted: #d7e5f0;
  --card: rgba(255,255,255,0.10);
  --card-border: rgba(255,255,255,0.18);
  --shadow: 0 22px 55px rgba(0,0,0,0.22);
  --accent: #8edb68;
  --accent2: #ff5c72;
  --dark: #0b2633;
  --max: 1160px;
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 85%, rgba(133, 209, 255, 0.38), transparent 22%),
    linear-gradient(135deg, var(--bg1) 0%, var(--bg2) 48%, var(--bg3) 100%);
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(10, 38, 51, 0.48);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.topbar-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 200;
  letter-spacing: .2px;
  font-size: 1.8rem;
}

.logo {
  width: 44px;
  height: 44px;
  position: relative;
  filter: drop-shadow(0 10px 16px rgba(0,0,0,0.18));
}

.logo::before,
.logo::after {
  content: "";
  position: absolute;
}

.logo::before {
  inset: 0;
  background: conic-gradient(from 180deg, #eb4e3d 0 22%, #f0c70a 22% 47%, #61b0f0 47% 76%, #e9001b 76% 100%);
  clip-path: polygon(50% 0, 82% 22%, 66% 58%, 100% 70%, 56% 100%, 16% 76%, 0 40%, 26% 30%);
  border-radius: 10px;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

nav a {
  color: var(--muted);
  font-size: .95rem;
}

nav a:hover { color: white; }

.hero {
  padding: 72px 0 50px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-rows: auto auto;
  gap: 34px;
  align-items: start;
}

.hero-title {
  grid-column: 1 / -1;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--muted);
  margin-bottom: 18px;
  font-size: .94rem;
}

h1 {
  margin: 0 0 14px;
  line-height: 1.08;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.92);
  font-weight: 600;
}

.h1-main {
  display: block;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 600;
}

.h1-sub {
  display: block;
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  margin-top: 6px;
}

.lead {
  margin: 0 0 24px;
  max-width: 700px;
  color: var(--muted);
  font-size: 1.12rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.btn {
  min-height: 52px;
  padding: 0 18px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: transform .16s ease, opacity .16s ease;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: white;
  color: #0f4560;
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
  color: white;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.mini-card,
.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mini-card {
  padding: 16px;
  color: var(--muted);
  font-size: .95rem;
}

.mini-card strong {
  display: block;
  color: white;
  margin-bottom: 6px;
}

.phone-wrap {
  display: flex;
  justify-content: center;
}

.phone-shift {
  margin-top: 40px;
}

.phone {
  width: min(640px, 100%);
  border-radius: 34px;
  padding: 18px;
  background: rgba(8, 24, 34, 0.72);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
}

.screen {
  position: relative;
  min-height: 360px;
  border-radius: 24px;
  padding: 18px 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 88%, rgba(135, 216, 255, 0.42), transparent 19%),
    linear-gradient(135deg, #0f607d 0%, #196d8f 52%, #3c8cb3 100%);
}

.screen-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: .84rem;
  color: rgba(255,255,255,0.86);
}

.screen-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.screen-logo {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.82);
  position: relative;
}

.screen-logo::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: inherit;
  border: 2px solid rgba(255,255,255,.52);
}

.welcome {
  text-align: center;
  margin-bottom: 16px;
}

.welcome .overline {
  font-size: 1.1rem;
  letter-spacing: .03em;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.95);
}

.welcome .sub {
  color: rgba(255,255,255,0.84);
  font-size: 1rem;
}

.flow-btn {
  position: relative;
  margin: 0 auto 20px;
  width: min(60%, 260px);
  min-height: 70px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: .02em;
  color: white;
  text-transform: uppercase;
}

.flow-btn::before {
  content: "";
  position: absolute;
  inset: 10px 0;
  border: 2px solid rgba(255,255,255,0.25);
  clip-path: polygon(7% 20%, 80% 20%, 95% 50%, 80% 80%, 7% 80%, 20% 50%);
  border-radius: 18px;
}

.flow-btn.entry::before { border-color: rgba(142, 219, 104, 0.85); }
.flow-btn.exit::before { border-color: rgba(255, 92, 114, 0.82); }

.flags {
  position: absolute;
  right: 10px;
  top: 90px;
  display: grid;
  gap: 8px;
}

.flag {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.78);
  background-size: cover;
  box-shadow: 0 8px 18px rgba(0,0,0,.15);
}

.it { background: linear-gradient(90deg, #4cae50 0 33%, white 33% 66%, #e74444 66% 100%); }
.uk { background: linear-gradient(135deg, #154ea7 0%, #154ea7 100%); position: relative; }
.fr { background: linear-gradient(90deg, #1f5cbf 0 33%, white 33% 66%, #e54a4a 66% 100%); }
.de { background: linear-gradient(180deg, black 0 33%, #d42121 33% 66%, #f0cf29 66% 100%); }
.es { background: linear-gradient(180deg, #d31d1d 0 25%, #f1d24a 25% 75%, #d31d1d 75% 100%); }

.powered {
  position: absolute;
  right: 12px;
  bottom: 10px;
  color: rgba(255,255,255,.55);
  font-size: .78rem;
}

section { padding: 28px 0; }

.section-head {
  margin-bottom: 22px;
}

.kicker {
  text-transform: uppercase;
  font-size: .82rem;
  letter-spacing: .12em;
  font-weight: 700;
  color: rgba(255,255,255,0.72);
  margin-bottom: 8px;
}

h2 {
  margin: 0 0 10px;
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: 1px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 16px;
}

.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }

.feature,
.problem,
.tier,
.faq {
  padding: 22px;
}

.icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 1.22rem;
}

.feature h3,
.problem h3,
.tier h3,
.faq h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.feature p,
.problem p,
.tier p,
.faq p {
  margin: 0;
  color: var(--muted);
}

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.tier ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
}

.tier li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  color: var(--muted);
}

.tier li::before {
  content: "✓";
  color: white;
  font-weight: 700;
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
}

.tier.cloud { outline: 2px solid rgba(255,255,255,0.16); }

.badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 11px;
  font-size: .82rem;
  font-weight: 700;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
}

.quote {
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.quote::before {
  content: "“";
  position: absolute;
  right: 18px;
  top: -6px;
  font-size: 5rem;
  color: rgba(255,255,255,0.08);
  line-height: 1;
}

.quote p {
  margin: 0 0 12px;
  font-size: 1.06rem;
}

.quote .author { color: var(--muted); }

.cta {
  padding: 28px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: center;
  background: rgba(255,255,255,0.12);
}

.cta p {
  margin: 0;
  color: var(--muted);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.footer {
  padding: 26px 0 46px;
  color: rgba(255,255,255,0.72);
  font-size: .95rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
}

.lang-menu {
  display: flex;
  gap: 10px;
  font-size: .85rem;
  align-items: center;
}

.lang-menu a {
  color: var(--muted);
}

.lang-menu a:hover {
  color: white;
}

.lang-menu strong {
  color: white;
}

a:not(.btn):hover {
  color: white;
}

.IRI {
  font-weight: 600;
}

.iriguest-wordmark {
  white-space: nowrap;
}

.download-box {
  padding: 28px;
  background: rgba(255,255,255,0.12);
}

.download-head {
  margin-bottom: 24px;
}

.download-head h2 {
  margin-bottom: 12px;
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px 40px;
}

.store-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .16s ease, opacity .16s ease;
}

.store-link:hover {
  transform: translateY(-2px);
  opacity: 0.96;
}

.store-link img {
  display: block;
  height: 64px;
  width: auto;
  max-width: 100%;
}

/* DEMO EMBED */
.demo-embed-wrap {
  display: block;
}

.demo-shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px;
  border-radius: 30px;
  background: #0b0b0b;
  box-shadow: 0 30px 70px rgba(0,0,0,0.45);
}

.demo-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
}

.demo-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #000;
}

/* DEMO MOBILE FALLBACK */
.demo-mobile-fallback {
  display: none;
  padding: 28px;
  background: rgba(255,255,255,0.12);
}

.demo-mobile-fallback h3 {
  margin: 0 0 12px;
  font-size: 1.5rem;
  line-height: 1.15;
}

.demo-mobile-fallback p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.demo-mobile-actions {
  margin-top: 22px;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.demo-mobile-actions .btn-primary {
  min-width: 220px;
}

.demo-mobile-actions .btn-secondary {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.85);
}

/* DEMO WARNING MODAL */
.demo-warning-modal {
  display: none;
}

.demo-warning-modal.is-open {
  display: block;
}

.demo-warning-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 22, 31, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
}

.demo-warning-dialog {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(92vw, 520px);
  padding: 28px 24px 24px;
  z-index: 1001;
  background:
    radial-gradient(circle at 50% 100%, rgba(133, 209, 255, 0.18), transparent 30%),
    linear-gradient(145deg, rgba(31,111,147,0.96), rgba(12,93,123,0.96));
  border: 1px solid rgba(255,255,255,0.16);
  text-align: center;
  max-height: calc(100vh - 24px);
  overflow-y: auto;
}

.demo-warning-dialog h3 {
  margin: 0 0 8px;
  font-size: 1.8rem;
  line-height: 1.02;
}

.demo-warning-text {
  color: rgba(255,255,255,0.82);
  margin: 0 auto 14px;
  max-width: 360px;
  font-size: 0.98rem;
  line-height: 1.35;
}

.demo-warning-anim {
  position: relative;
  width: 130px;
  height: 92px;
  margin: 0 auto 10px;
  display: grid;
  place-items: center;
}

.demo-phone-icon {
  width: 72px;
  height: 118px;
  border-radius: 18px;
  background: linear-gradient(145deg, #eef5fb, #dfeaf3);
  box-shadow:
    inset 0 0 0 2px rgba(10, 38, 51, 0.18),
    0 18px 35px rgba(0,0,0,0.24);
  position: relative;
  transform-origin: center center;
  animation: demoRotatePhoneHint 2.2s ease-in-out infinite;
}

.demo-phone-icon::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 24px;
  height: 4px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(10, 38, 51, 0.25);
}

.demo-phone-icon::after {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 50%;
  width: 18px;
  height: 18px;
  transform: translateX(-50%);
  border-radius: 999px;
  border: 2px solid rgba(10, 38, 51, 0.18);
}

.demo-phone-screen {
  position: absolute;
  inset: 16px 8px 28px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 85%, rgba(133, 209, 255, 0.34), transparent 28%),
    linear-gradient(135deg, #0c5d7b 0%, #1f6f93 50%, #4f95ba 100%);
}

.demo-rotate-arrow {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.2rem;
  color: rgba(255,255,255,0.88);
  animation: demoArrowPulse 1.8s ease-in-out infinite;
}

.demo-warning-status {
  margin: 0 auto 14px;
  min-height: 1.4em;
  color: rgba(255,255,255,0.78);
  font-size: .95rem;
}

.demo-warning-modal.is-ready .demo-warning-status {
  color: white;
  font-weight: 600;
}

.demo-warning-modal.is-ready .demo-phone-icon {
  animation-duration: 1.4s;
}

.demo-warning-actions {
  margin-top: 12px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.demo-warning-actions .btn {
  width: 100%;
}

.demo-warning-actions .btn.is-disabled,
.demo-warning-actions .btn[aria-disabled="true"] {
  opacity: 0.42;
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
  box-shadow: none;
}

html.modal-open,
body.modal-open {
  overflow: hidden;
  touch-action: none;
}

@keyframes demoRotatePhoneHint {
  0% { transform: rotate(0deg) scale(1); }
  18% { transform: rotate(0deg) scale(1); }
  42% { transform: rotate(90deg) scale(1.04); }
  58% { transform: rotate(90deg) scale(1.04); }
  82% { transform: rotate(0deg) scale(1); }
  100% { transform: rotate(0deg) scale(1); }
}

@keyframes demoArrowPulse {
  0%, 100% {
    opacity: 0.45;
    transform: translateY(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.12);
  }
}

@media (max-width: 1040px) {
  nav { display: none; }

  .hero-grid,
  .grid-3,
  .grid-2,
  .compare,
  .cta,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .cta-actions { justify-content: flex-start; }
  .hero-points { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .phone-shift {
    margin-top: 8px;
  }
}

@media (max-width: 820px) {
  .demo-embed-wrap {
    display: none;
  }

  .demo-mobile-fallback {
    display: block;
  }

  .demo-mobile-actions .btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .topbar-inner { min-height: 64px; }
  .hero { padding-top: 40px; }
  .actions { flex-direction: column; }
  .btn { width: 100%; }
  .screen { min-height: 560px; }
  .flow-btn { font-size: 1.7rem; min-height: 92px; }
  .flags { top: 150px; }

  .download-box {
    padding: 22px;
  }

  .store-links {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }

  .store-link {
    justify-content: center;
  }

  .store-link img {
    height: 56px;
    margin: 0 auto;
  }

  .demo-warning-dialog {
    width: min(92vw, 460px);
    padding: 24px 20px 20px;
  }

  .demo-warning-dialog h3 {
    font-size: 1.7rem;
  }

  .demo-warning-anim {
    width: 150px;
    height: 120px;
  }

  .demo-phone-icon {
    width: 62px;
    height: 102px;
    border-radius: 16px;
  }
}


 /* FROM invio e-Mail */
/* FORM invio e-mail */
#request-info {
  padding-top: 10px;
}

.request-card {
  padding: 28px;
  background: rgba(255,255,255,0.12);
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

.request-card > div:first-child p {
  margin: 0;
  color: var(--muted);
}

.request-form {
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  font-size: 0.95rem;
  color: white;
  font-weight: 500;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: white;
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-field textarea {
  resize: vertical;
  min-height: 140px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255,255,255,0.55);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.11);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.form-consent input {
  margin-top: 4px;
  width: auto;
  flex: 0 0 auto;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-response {
  display: none;
  margin: 18px 0 0;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 0.96rem;
  line-height: 1.45;
}

.form-response.is-success,
.form-response.is-error {
  display: block;
}

.form-response.is-success {
  background: rgba(142, 219, 104, 0.14);
  border-color: rgba(142, 219, 104, 0.35);
  color: #f3ffed;
}

.form-response.is-error {
  background: rgba(255, 92, 114, 0.14);
  border-color: rgba(255, 92, 114, 0.35);
  color: #fff3f5;
}

.request-form .btn[disabled] {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

@media (max-width: 820px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .request-card {
    padding: 22px;
  }
}


.form-alt-actions {
  margin-top: 18px;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.form-alt-text {
  margin-bottom: 8px;
  opacity: 0.8;
}

.form-alt-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.alt-link {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  position: relative;
  font-weight: 500;
  transition: all 0.15s ease;
}

.alt-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.4);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.alt-link:hover {
  color: white;
}

.alt-link:hover::after {
  transform: scaleX(1);
}


.solution-grid {
  align-items: stretch;
}

.solution-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  min-height: 100%;
}

.solution-card h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.25;
}

.solution-card p {
  margin: 0;
  color: var(--muted);
}

.text-link {
  margin-top: auto;
  color: white;
  font-weight: 700;
}

.landing-hero {
  padding-bottom: 34px;
}

.landing-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: center;
}

.landing-hero-grid .hero-title {
  grid-column: 1 / -1;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-strip span {
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--muted);
  font-size: .9rem;
  font-weight: 600;
}

.landing-list,
.process-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.landing-list li,
.process-list li {
  color: var(--muted);
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
}

.landing-list li::before,
.process-list li::before {
  content: "✓";
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  color: white;
  font-weight: 700;
}

@media (max-width: 900px) {
  .landing-hero-grid {
    grid-template-columns: 1fr;
  }
}

/* Premium visual refinement: lighter typography and more breathing room. */
body {
  font-weight: 400;
}

.topbar-inner {
  min-height: 80px;
}

nav {
  gap: 22px;
}

nav a,
.lang-menu,
.lang-menu a,
.lang-menu strong {
  font-weight: 400;
}

.brand {
  letter-spacing: 0;
}

.hero {
  padding: 96px 0 78px;
}

.hero-grid {
  gap: 52px 46px;
}

.landing-hero {
  padding-top: 88px;
  padding-bottom: 68px;
}

.landing-hero-grid {
  gap: 54px 52px;
}

.eyebrow {
  margin-bottom: 26px;
  padding: 11px 17px;
  font-weight: 400;
}

h1 {
  margin-bottom: 34px;
  line-height: 1.13;
  letter-spacing: 0;
  font-weight: 500;
}

.h1-main {
  font-size: 3.8rem;
  font-weight: 500;
}

.h1-sub {
  margin-top: 20px;
  font-size: 2.02rem;
  line-height: 1.24;
  font-weight: 300;
}

.lead {
  margin-bottom: 38px;
  line-height: 1.72;
  font-weight: 400;
}

.actions {
  gap: 16px;
  margin-bottom: 36px;
}

.btn {
  min-height: 54px;
  padding: 0 21px;
  border-radius: 15px;
  font-weight: 600;
}

.hero-points,
.grid-3,
.grid-2 {
  gap: 22px;
}

.mini-card,
.feature,
.problem,
.tier,
.faq,
.solution-card {
  padding: 28px;
}

.mini-card {
  line-height: 1.64;
}

.mini-card strong,
.feature h3,
.problem h3,
.tier h3,
.faq h3,
.solution-card h3 {
  font-weight: 500;
}

.mini-card strong {
  margin-bottom: 12px;
}

section {
  padding: 46px 0;
}

.section-head {
  margin-bottom: 32px;
}

.kicker {
  margin-bottom: 13px;
  letter-spacing: 0;
  font-weight: 500;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.42rem;
  line-height: 1.16;
  letter-spacing: 0;
  font-weight: 400;
}

.section-head p,
.feature p,
.problem p,
.tier p,
.faq p,
.solution-card p {
  line-height: 1.68;
}

.compare {
  gap: 26px;
}

.tier ul,
.landing-list,
.process-list {
  margin-top: 24px;
  gap: 14px;
}

.tier li,
.landing-list li,
.process-list li {
  line-height: 1.62;
}

.tier li::before,
.landing-list li::before,
.process-list li::before {
  font-weight: 600;
}

.badge,
.trust-strip span,
.text-link {
  font-weight: 500;
}

.badge {
  margin-bottom: 18px;
  padding: 8px 14px;
}

.trust-strip {
  gap: 12px;
}

.trust-strip span {
  padding: 9px 13px;
}

.cta,
.request-card,
.download-box {
  padding: 36px;
}

.cta {
  gap: 32px;
}

.form-field label,
.alt-link {
  font-weight: 400;
}

strong,
.screen-brand,
.text-link,
.store-label strong,
.demo-warning-dialog h3 {
  font-weight: 500;
}

.iriguest-wordmark span[style*="600"] {
  font-weight: 500 !important;
}

@media (max-width: 1040px) {
  .h1-main {
    font-size: 3.25rem;
  }

  .h1-sub {
    font-size: 1.78rem;
  }
}

@media (max-width: 900px) {
  .hero,
  .landing-hero {
    padding-top: 68px;
  }

  .landing-hero-grid {
    gap: 36px;
  }
}

@media (max-width: 640px) {
  .topbar-inner {
    min-height: 66px;
  }

  .hero,
  .landing-hero {
    padding-top: 48px;
    padding-bottom: 50px;
  }

  .h1-main {
    font-size: 2.45rem;
  }

  .h1-sub {
    margin-top: 16px;
    font-size: 1.35rem;
  }

  h1 {
    margin-bottom: 28px;
  }

  h2 {
    font-size: 1.85rem;
  }

  .actions {
    margin-bottom: 30px;
  }

  .mini-card,
  .feature,
  .problem,
  .tier,
  .faq,
  .solution-card,
  .cta,
  .request-card,
  .download-box {
    padding: 24px;
  }
}


.inline-link {
  color: white;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.inline-link:hover {
  color: var(--accent);
}


.comparison-wrap {
  overflow-x: auto;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.comparison-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  overflow: hidden;
  background: rgba(255,255,255,0.94);
  color: #2f3642;
}

.comparison-table th {
  padding: 15px 18px;
  color: white;
  text-align: left;
  font-size: 1rem;
}

.comparison-table th:first-child {
  background: #0f7186;
}

.comparison-table th:nth-child(2) {
  background: #0f8fc5;
  text-align: center;
}

.comparison-table th:nth-child(3) {
  background: #0b4f92;
  text-align: center;
}

.comparison-table td {
  padding: 13px 18px;
  border-bottom: 1px solid rgba(15, 44, 64, 0.08);
  font-weight: 600;
}

.comparison-table td:nth-child(2) {
  background: #e9f6fb;
  text-align: center;
}

.comparison-table td:nth-child(3) {
  background: #e7f0fb;
  text-align: center;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.availability {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  font-size: 2rem;
  line-height: 1;
  color: #2f3642;
}

.comparison-note {
  margin-top: 24px;
}


.feature h2 {
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.25;
}

.landing-list li,
.process-list li {
  align-items: start;
}

.landing-list .list-text,
.process-list .list-text {
  min-width: 0;
  display: block;
}

.feature .inline-link {
  overflow-wrap: anywhere;
}
