:root {
  --navy: #071f3b;
  --navy-2: #0c315b;
  --orange: #ff6416;
  --orange-soft: #fff0e7;
  --cream: #fffdf8;
  --white: #ffffff;
  --ink: #081b31;
  --muted: #5d7085;
  --line: #dbe3ea;
  --green: #15b96b;
  --shadow: 0 24px 70px rgba(7, 31, 59, .13);
}

* { box-sizing: border-box; }

html {
  min-width: 320px;
  overflow-x: hidden;
  overflow-y: scroll;
  scroll-behavior: auto;
  background: var(--cream);
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  overflow: visible;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

button, input, select { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }

main {
  display: block;
  width: 100%;
  min-height: 100vh;
  overflow: visible;
}

.site-header {
  position: relative;
  z-index: 20;
  width: 100%;
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 18px max(30px, calc((100% - 1480px) / 2));
  background: var(--cream);
  border-bottom: 1px solid rgba(8, 27, 49, .08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 29px;
  font-weight: 900;
  letter-spacing: -.04em;
  white-space: nowrap;
  color: var(--ink);
  text-decoration: none;
}

button.brand { cursor: pointer; }
.brand > span:last-child > span { color: var(--orange); }

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 12px 12px 12px 4px;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
}

.desktop-nav button,
.mobile-nav button,
.text-button {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.desktop-nav button {
  padding: 15px 2px;
  color: #243b53;
  border-bottom: 2px solid transparent;
}

.desktop-nav button:hover,
.desktop-nav button:focus-visible { color: var(--orange); border-bottom-color: var(--orange); }

button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(255, 100, 22, .32);
  outline-offset: 3px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 0 26px;
  border: 0;
  cursor: pointer;
  font-weight: 900;
}

.button-dark { color: var(--white); background: var(--navy); border-radius: 12px; }
.site-header a.button { text-decoration: none; }
.button-orange { color: var(--white); background: var(--orange); box-shadow: 0 14px 35px rgba(255, 100, 22, .2); }
.button:hover { filter: brightness(.96); }

.menu-toggle {
  display: none;
  min-width: 72px;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  font-weight: 900;
}

.mobile-nav[hidden] { display: none !important; }

.mobile-nav {
  position: relative;
  z-index: 19;
  padding: 8px 20px 20px;
  display: grid;
  gap: 8px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.mobile-nav button,
.mobile-nav a {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  font-weight: 900;
}

.mobile-nav .mobile-cta { color: var(--white); background: var(--orange); border-color: var(--orange); }
.mobile-nav .mobile-trial { color: var(--white); background: var(--navy); border-color: var(--navy); }

.hero {
  position: relative;
  width: 100%;
  min-height: 660px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(500px, 1.05fr);
  align-items: center;
  gap: clamp(44px, 6vw, 110px);
  padding: 58px max(30px, calc((100% - 1480px) / 2)) 54px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 42%, rgba(255, 100, 22, .2), transparent 30%),
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    var(--navy);
  background-size: auto, 64px 64px, 64px 64px, auto;
}

.hero-copy { position: relative; z-index: 2; }
.eyebrow { margin: 0 0 26px; color: #ffb07a; font-size: 14px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow span { width: 34px; height: 4px; display: inline-block; margin-right: 12px; vertical-align: middle; background: var(--orange); border-radius: 9px; }
.eyebrow.dark { color: var(--orange); }

h1, h2, h3, p { margin-top: 0; }
h1, h2 { letter-spacing: -.055em; line-height: .98; }

h1 {
  max-width: 720px;
  margin-bottom: 32px;
  font-size: clamp(54px, 4.3vw, 82px);
  font-weight: 450;
}

h1 em { display: block; color: var(--orange); font-style: normal; }
.lead { max-width: 720px; margin-bottom: 40px; color: #c7d5e3; font-size: clamp(19px, 1.4vw, 24px); line-height: 1.55; }
.launch-offer { width: fit-content; display: flex; align-items: center; gap: 16px; margin: -12px 0 28px; padding: 11px 16px; color: var(--navy); background: var(--white); border-left: 5px solid var(--orange); box-shadow: 0 12px 30px rgba(0,0,0,.16); }
.launch-offer span { color: var(--orange); font-size: 11px; font-weight: 950; letter-spacing: .11em; text-transform: uppercase; }
.launch-offer strong { font-size: 27px; letter-spacing: -.04em; white-space: nowrap; }
.launch-offer strong small { font-size: 9px; letter-spacing: 0; }
.launch-offer em { padding: 7px 10px; color: var(--white); background: var(--green); font-size: 12px; font-style: normal; font-weight: 900; white-space: nowrap; }
.hero-actions { display: flex; align-items: center; gap: 30px; }
.hero-actions .button { min-width: 280px; }
.text-button { min-height: 50px; padding: 0; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.35); }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 34px; color: #dbe8f3; font-size: 14px; font-weight: 750; }

.hero-product { position: relative; width: 100%; min-width: 0; min-height: 480px; }
.screen-card { position: absolute; inset: 5% 3% 11% 0; margin: 0; padding: 14px; overflow: hidden; background: #e9eef3; border: 10px solid #132b43; border-radius: 20px; box-shadow: var(--shadow); }
.screen-card img { width: 100%; height: calc(100% - 34px); object-fit: contain; background: #f7f8fa; }
.screen-bar { height: 34px; display: flex; align-items: center; gap: 7px; color: #6b7b8b; font-size: 10px; }
.screen-bar i { width: 10px; height: 10px; border-radius: 50%; background: #c4ccd4; }
.screen-bar i:first-child { background: var(--orange); }
.screen-bar span { margin-left: 10px; }
.screen-card figcaption, .secondary-screen figcaption { position: absolute; left: 18px; bottom: 16px; padding: 10px 16px; color: var(--white); background: var(--navy); font-size: 12px; font-weight: 900; border-radius: 7px; }

.secondary-screen { position: absolute; right: 0; bottom: 0; width: 44%; max-width: 360px; margin: 0; padding: 8px; overflow: hidden; background: var(--white); border: 7px solid var(--white); border-radius: 16px; box-shadow: var(--shadow); }
.secondary-screen img { width: 100%; height: auto; aspect-ratio: 1.95 / 1; object-fit: cover; object-position: top left; }
.secondary-screen figcaption { left: 10px; bottom: 10px; }
.real-badge { position: absolute; left: 3%; bottom: 0; padding: 12px 20px; color: var(--navy); background: var(--white); border-radius: 999px; font-size: 12px; font-weight: 900; box-shadow: var(--shadow); }
.real-badge::first-letter { color: var(--green); }

.business-strip,
.sales-band {
  width: 100%;
  padding: 20px max(24px, calc((100% - 1480px) / 2));
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 46px;
  color: var(--white);
  background: var(--orange);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .15em;
}
.business-strip { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 18px; padding-block: 34px; font-size: clamp(22px, 2vw, 38px); letter-spacing: .06em; }
.business-type { min-width: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; text-align: center; }
.business-icon { width: 150px; height: 150px; display: grid; place-items: center; background: rgba(255,255,255,.18); border: 2px solid rgba(255,255,255,.5); border-radius: 32px; font-size: 84px; line-height: 1; box-shadow: 0 14px 28px rgba(7,31,59,.14); }

.section { width: 100%; padding: 82px max(30px, calc((100% - 1480px) / 2)); }
.section-heading { max-width: 960px; margin-bottom: 44px; }
.section-heading h2, .tour-heading h2, .cloud-section h2, .faq-section h2, .quote-section h2 { margin-bottom: 22px; font-size: clamp(40px, 4.2vw, 64px); font-weight: 500; }
.section-heading > p:last-child, .tour-heading > p, .section-heading.split > p, .faq-section header > p:last-child, .quote-section > div > p:last-child { color: var(--muted); font-size: 20px; line-height: 1.55; }
.section-heading.split, .tour-heading { max-width: none; display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 70px; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.feature-card { position: relative; min-height: 245px; padding: 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.45); }
.feature-card.featured { color: var(--white); background: var(--navy); }
.feature-number { position: absolute; top: 34px; right: 34px; color: #aeb9c4; font-size: 12px; font-weight: 900; }
.feature-tag { display: inline-flex; min-height: 36px; align-items: center; margin-bottom: 26px; padding: 0 13px; color: var(--orange); background: var(--orange-soft); border-radius: 10px; font-size: 11px; letter-spacing: .09em; }
.feature-card.featured .feature-tag { color: var(--white); background: var(--orange); }
.feature-card h3 { margin-bottom: 18px; font-size: 25px; line-height: 1.2; }
.feature-card p { margin-bottom: 0; color: var(--muted); font-size: 17px; line-height: 1.65; }
.feature-card.featured p { color: #c3d5e7; }

.tour-section { width: 100%; padding: 82px max(30px, calc((100% - 1480px) / 2)); background: #f0f4f7; }
.tour-heading { margin-bottom: 42px; }
.tour-grid { height: clamp(500px, 42vw, 600px); display: grid; grid-template-columns: 1.3fr .85fr; grid-template-rows: repeat(2, minmax(0, 1fr)); gap: 20px; }
.tour-card { min-width: 0; min-height: 0; display: flex; flex-direction: column; margin: 0; overflow: hidden; background: var(--white); border: 1px solid var(--line); box-shadow: 0 16px 45px rgba(7,31,59,.08); }
.tour-card.wide { grid-row: span 2; }
.tour-card figcaption { display: flex; justify-content: space-between; gap: 20px; padding: 22px 26px; }
.tour-card figcaption b { color: var(--orange); }
.tour-card figcaption span { color: var(--muted); text-align: right; }
.tour-card img { width: 100%; height: 100%; min-height: 0; flex: 1 1 auto; object-fit: contain; object-position: center; background: #eef2f5; border-top: 1px solid var(--line); }
.tour-card:not(.wide) img { height: 100%; }

.cloud-section {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr .8fr;
  align-items: center;
  gap: 90px;
  padding: 82px max(30px, calc((100% - 1320px) / 2));
  color: var(--white);
  background: var(--navy);
}
.cloud-section p { max-width: 700px; color: #c8d6e4; font-size: 19px; line-height: 1.65; }
.cloud-section ul { display: grid; gap: 15px; padding: 0; list-style: none; }
.cloud-section li { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.16); font-size: 18px; }
.cloud-section li b { margin-right: 24px; color: var(--orange); }
.ticket-card { margin: 0; padding: 24px; background: var(--white); box-shadow: var(--shadow); }
.ticket-card img { width: 100%; max-height: 570px; object-fit: contain; }
.ticket-card figcaption { margin-top: 16px; color: var(--navy); text-align: center; font-weight: 900; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card { position: relative; padding: 28px 32px 32px; background: var(--white); border: 1px solid var(--line); }
.product-card.popular { border: 2px solid var(--orange); }
.popular-label { position: absolute; top: 18px; right: 18px; z-index: 2; padding: 10px 14px; color: var(--white); background: var(--orange); font-size: 10px; font-weight: 950; letter-spacing: .12em; }
.product-image { height: 240px; display: grid; place-items: center; margin-bottom: 26px; background: #f1f0ed; overflow: hidden; }
.product-image img { width: 100%; height: 100%; object-fit: contain; }
.product-card small { color: var(--orange); font-weight: 950; letter-spacing: .12em; }
.product-card h3 { margin: 14px 0 24px; font-size: 28px; font-weight: 500; }
.product-card > p:not(.price) { color: var(--muted); }
.price { margin-bottom: 20px; font-size: 46px; font-weight: 900; letter-spacing: -.05em; }
.price span { font-size: 11px; letter-spacing: 0; }
.quote-product { width: 100%; min-height: 56px; margin-top: 18px; padding: 0 16px; border: 1px solid #c9d3dd; background: var(--white); cursor: pointer; text-align: left; font-weight: 900; }
.quote-product:hover { color: var(--white); background: var(--navy); }
.tablet-device { width: 190px; min-height: 250px; padding: 22px 15px; display: grid; gap: 12px; background: #f9fbfc; border: 10px solid #17222c; border-radius: 20px; box-shadow: 0 18px 30px rgba(0,0,0,.18); }
.tablet-device b { text-align: center; font-size: 13px; }
.tablet-device b::first-letter { color: var(--orange); }
.tablet-device span { padding: 15px 12px; border-radius: 7px; background: #ffc65a; font-size: 12px; font-weight: 800; }
.tablet-device span:nth-child(3) { background: #70c4e7; }
.tablet-device span:nth-child(4) { background: #8fd690; }
.disclaimer { margin: 28px 0 0; color: var(--muted); text-align: center; font-size: 13px; }
.sales-band { justify-content: center; font-size: 17px; line-height: 1.7; }

.seo-resource-section { background: #f2f5f7; }
.seo-resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.seo-resource-card { min-height: 210px; display: flex; flex-direction: column; padding: 28px; color: var(--ink); background: var(--white); border: 1px solid var(--line); text-decoration: none; }
.seo-resource-card small { color: var(--orange); font-size: 11px; font-weight: 950; letter-spacing: .12em; }
.seo-resource-card h3 { margin: 24px 0 14px; font-size: 24px; line-height: 1.2; }
.seo-resource-card p { color: var(--muted); line-height: 1.6; }
.seo-resource-card span { margin-top: auto; color: var(--orange); font-weight: 900; }
.seo-resource-card:hover, .seo-resource-card:focus-visible { border-color: var(--orange); box-shadow: 0 14px 34px rgba(7,31,59,.08); }

.faq-section { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; }
.faq-section header { max-width: 570px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; font-size: 21px; font-weight: 900; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--orange); font-size: 27px; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { padding: 0 48px 24px 0; color: var(--muted); font-size: 17px; line-height: 1.65; }

.quote-section {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 90px;
  padding: 82px max(30px, calc((100% - 1320px) / 2));
  color: var(--white);
  background: var(--navy);
}
.quote-section > div { align-self: center; }
.quote-section > div > p:last-child { color: #c7d6e4; }
#quote-form { padding: 42px; color: var(--ink); background: var(--white); }
#quote-form h3 { margin-bottom: 28px; font-size: 27px; }
#quote-form label { display: grid; gap: 8px; margin: 0 0 18px; color: #3d5267; font-size: 13px; font-weight: 850; }
#quote-form input, #quote-form select { width: 100%; min-height: 50px; padding: 0 14px; color: var(--ink); background: #fff; border: 1px solid #cbd5de; border-radius: 0; }
#quote-form .consent { grid-template-columns: 20px 1fr; align-items: start; gap: 10px; font-weight: 600; line-height: 1.5; }
#quote-form .consent input { width: 20px; min-height: 20px; margin: 2px 0 0; padding: 0; }
#quote-form .consent a { color: var(--orange); }
#quote-form .button { width: 100%; margin-top: 6px; }
.form-trap { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }
.form-status { min-height: 22px; margin: 16px 0 0; color: #a43d0b; font-size: 13px; line-height: 1.5; }
.form-status.success { color: #08743f; }

footer { width: 100%; min-height: 150px; padding: 42px max(30px, calc((100% - 1480px) / 2)); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 32px; color: #c5d4e2; background: #04152a; }
footer .brand { color: var(--white); }
footer p { margin: 0; text-align: center; }
.seo-links { grid-column: 1 / -1; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 28px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.12); }
.seo-links a { color: #c5d4e2; text-decoration: none; font-size: 14px; font-weight: 750; }
.seo-links a:hover, .seo-links a:focus-visible { color: var(--orange); }

.whatsapp-float, .back-to-top {
  position: fixed;
  z-index: 50;
  right: 24px;
  min-height: 54px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  cursor: pointer;
  font-weight: 900;
  box-shadow: 0 16px 38px rgba(0,0,0,.2);
}
.whatsapp-float { bottom: 24px; background: var(--green); }
.back-to-top { bottom: 90px; background: var(--navy-2); }
.back-to-top[hidden] { display: none !important; }

@media (max-width: 1100px) {
  .site-header { gap: 18px; padding-inline: 24px; }
  .desktop-nav { gap: 18px; }
  .hero { grid-template-columns: 1fr 1fr; padding-inline: 30px; }
  .hero-product { min-height: 450px; }
  .feature-card { padding: 34px 28px; }
  .product-image { height: 230px; }
}

@media (max-width: 860px) {
  .site-header { min-height: 78px; grid-template-columns: 1fr auto; }
  .desktop-nav, .site-header > .whatsapp-control, .site-header > .trial-button { display: none; }
  .menu-toggle { display: block; }
  .brand { font-size: 25px; }
  .brand-mark { width: 42px; height: 42px; }
  .hero { min-height: 0; grid-template-columns: 1fr; padding: 64px 24px 55px; }
  .hero-product { min-height: 480px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .section-heading.split, .tour-heading, .cloud-section, .faq-section, .quote-section { grid-template-columns: 1fr; gap: 42px; }
  .tour-grid { grid-template-columns: 1fr; }
  .tour-grid { height: auto; grid-template-rows: none; }
  .tour-card.wide { grid-row: auto; }
  .tour-card img, .tour-card:not(.wide) img { height: 320px; flex: none; }
  .product-grid { grid-template-columns: 1fr; max-width: 660px; margin-inline: auto; }
  .seo-resource-grid { grid-template-columns: repeat(2, 1fr); }
  .product-image { height: 340px; }
  footer { grid-template-columns: 1fr; text-align: center; }
  footer .brand { justify-content: center; }
}

@media (max-width: 560px) {
  .site-header { padding: 14px 16px; }
  .brand { gap: 8px; font-size: 22px; }
  .hero { padding: 52px 18px 42px; }
  .eyebrow { margin-bottom: 20px; font-size: 11px; line-height: 1.5; }
  h1 { font-size: clamp(48px, 15vw, 66px); }
  .lead { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 14px; }
  .hero-actions .button { width: 100%; min-width: 0; }
  .text-button { align-self: flex-start; }
  .trust-row { display: grid; }
  .hero-product { min-height: 330px; }
  .screen-card { inset: 0 0 15% 0; padding: 7px; border-width: 6px; border-radius: 12px; }
  .screen-bar { height: 24px; }
  .screen-card img { height: calc(100% - 24px); }
  .secondary-screen { width: 47%; border-width: 4px; }
  .screen-card figcaption, .secondary-screen figcaption { display: none; }
  .real-badge { left: 8px; padding: 9px 13px; font-size: 9px; }
  .business-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 12px; padding: 30px 16px; font-size: 18px; letter-spacing: .04em; }
  .business-type { min-width: 0; gap: 12px; }
  .business-icon { width: 92px; height: 92px; border-radius: 22px; font-size: 52px; }
  .launch-offer { width: 100%; flex-wrap: wrap; gap: 9px 13px; }
  .section, .tour-section, .cloud-section, .quote-section { padding: 62px 18px; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2, .tour-heading h2, .cloud-section h2, .faq-section h2, .quote-section h2 { font-size: 43px; }
  .section-heading > p:last-child, .tour-heading > p, .section-heading.split > p, .faq-section header > p:last-child, .quote-section > div > p:last-child { font-size: 17px; }
  .feature-grid { grid-template-columns: 1fr; }
  .seo-resource-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 230px; padding: 30px 24px; }
  .tour-card figcaption { display: grid; padding: 18px; }
  .tour-card figcaption span { text-align: left; }
  .tour-card img, .tour-card:not(.wide) img { height: 230px; }
  .cloud-section { gap: 35px; }
  .ticket-card { padding: 12px; }
  .product-card { padding: 20px; }
  .product-image { height: 250px; }
  .price { font-size: 42px; }
  .faq-list summary { min-height: 76px; font-size: 18px; }
  #quote-form { padding: 28px 20px; }
  footer { padding: 48px 20px 120px; }
  .whatsapp-float { right: 14px; bottom: 14px; }
  .back-to-top { right: 14px; bottom: 80px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
