*, *::before, *::after { box-sizing: border-box; }
:root {
  --ink: #161514;
  --muted: #62656f;
  --paper: #fffaf5;
  --white: #ffffff;
  --line: #e7ded4;
  --blue: #2454f4;
  --blue-deep: #1832a7;
  --coral: #ff5754;
  --orange: #c45c1a;
  --orange-deep: #9f4210;
  --green: #2f7d59;
  --cream: #f3eadf;
  --success-bg: #edf8f1;
  --success-text: #21663a;
  --error-bg: #fff1f1;
  --error-text: #a12d2d;
  --info-bg: #eef4fb;
  --info-text: #305b8a;
  --shadow: 0 22px 60px rgba(29, 25, 22, 0.12);
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; -webkit-tap-highlight-color: transparent; }
button, input, select, textarea { font: inherit; }
button { border: 0; cursor: pointer; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(36, 84, 244, 0.22);
  outline-offset: 3px;
}
[hidden] { display: none !important; }
.icon {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}
.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(255, 250, 245, 0.86);
  border-bottom: 1px solid rgba(22, 21, 20, 0.08);
  backdrop-filter: blur(18px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}
.brand img { width: 146px; height: auto; }
.brand small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(22, 21, 20, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
}
.nav a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  color: #33312f;
  padding: 9px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.nav a:hover, .nav a.active {
  background: var(--ink);
  color: var(--white);
}
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 18px;
  color: var(--white);
  background: var(--orange-deep);
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}
.cta:hover { background: var(--blue-deep); }
main { padding-top: 74px; }
section { scroll-margin-top: 84px; }
.wrap {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}
.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: end;
  padding: 64px 0 34px;
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(9, 11, 18, 0.88), rgba(9, 11, 18, 0.58) 44%, rgba(9, 11, 18, 0.24)),
    url("10a12ea3-45e3-4f9b-a2d4-7d2d0a93d99e.jpg") center/cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 180px;
  z-index: -1;
  background: linear-gradient(0deg, rgba(255, 250, 245, 1), rgba(255, 250, 245, 0));
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.72fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: end;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(255, 87, 84, 0.2);
}
h1 {
  margin: 20px 0 18px;
  max-width: 850px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(43px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}
.hero-lede {
  max-width: 730px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}
.btn-primary { background: var(--coral); color: var(--white); }
.btn-primary:hover { background: var(--orange); }
.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.11);
}
.btn-secondary-dark {
  color: var(--ink);
  border: 1px solid rgba(22, 21, 20, 0.18);
  background: rgba(255, 255, 255, 0.75);
}
.hero-panel {
  background: rgba(255, 250, 245, 0.94);
  color: var(--ink);
  border-radius: 8px;
  padding: 20px;
  box-shadow: var(--shadow);
}
.phone-shell {
  border: 1px solid #e9ddd1;
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}
.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 15px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--coral));
}
.phone-top strong { font-size: 14px; }
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}
.lesson {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 14px 15px;
  border-bottom: 1px solid #efe6dd;
}
.lesson:last-child { border-bottom: 0; }
.lesson-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--orange);
  font-weight: 900;
}
.lesson:nth-child(3) .lesson-mark { background: var(--green); }
.lesson:nth-child(4) .lesson-mark { background: var(--blue-deep); }
.lesson h3 {
  margin: 0 0 4px;
  font-size: 14px;
}
.lesson p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.metric {
  padding: 12px;
  border: 1px solid #eadfd6;
  border-radius: 8px;
  background: #fffdf9;
}
.metric strong {
  display: block;
  color: var(--orange-deep);
  font-size: 22px;
}
.metric span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.3;
}
.section-pad { padding: 90px 0; }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.62fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 32px;
}
.label {
  display: block;
  margin-bottom: 12px;
  color: var(--orange-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
h2 {
  margin: 0;
  max-width: 760px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: 0;
}
.section-head p, .text-block p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
.suite-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.system-card, .update-card, .partner-card, .value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(29, 25, 22, 0.06);
}
.system-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.system-media {
  min-height: 150px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--coral));
}
.system-card:nth-child(2) .system-media { background: linear-gradient(135deg, var(--orange-deep), var(--coral)); }
.system-card:nth-child(3) .system-media { background: linear-gradient(135deg, var(--green), var(--blue)); }
.system-icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
}
.system-icon .icon { width: 34px; height: 34px; }
.system-body { padding: 22px; }
.system-body h3 {
  margin: 0 0 9px;
  font-size: 21px;
}
.system-body p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.tag {
  padding: 6px 9px;
  color: #34302c;
  background: #f5eee7;
  border: 1px solid #eaded2;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}
.band {
  background: var(--ink);
  color: var(--white);
}
.band .label { color: #ffb38e; }
.band .section-head p { color: rgba(255, 255, 255, 0.72); }
.model-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(330px, 1.12fr);
  gap: 28px;
  align-items: stretch;
}
.feature-list {
  display: grid;
  gap: 12px;
}
.feature {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}
.feature span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--coral);
}
.feature h3 {
  margin: 0 0 5px;
  font-size: 16px;
}
.feature p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.6;
}
.map-visual {
  min-height: 500px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(36, 84, 244, 0.08), rgba(255, 87, 84, 0.18)),
    url("5205.jpg") center/cover no-repeat;
}
.map-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 21, 20, 0.08), rgba(22, 21, 20, 0.68));
}
.map-note {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(22, 21, 20, 0.7);
  backdrop-filter: blur(10px);
}
.map-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}
.map-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.65;
}
.updates-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}
.update-card {
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 22px;
}
.update-card.featured {
  min-height: 430px;
  justify-content: flex-end;
  color: var(--white);
  border: 0;
  background:
    linear-gradient(180deg, rgba(22, 21, 20, 0.05), rgba(22, 21, 20, 0.88)),
    url("file_00000000c84871f498fbe8e64f40abb0.png") center/cover no-repeat;
}
.update-stack {
  display: grid;
  gap: 18px;
}
.date {
  width: fit-content;
  margin-bottom: 18px;
  padding: 6px 10px;
  color: var(--orange-deep);
  background: #f8eee5;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.featured .date {
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
}
.update-card h3 {
  margin: 0 0 10px;
  font-size: 23px;
  line-height: 1.15;
}
.update-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
.featured p { color: rgba(255, 255, 255, 0.78); max-width: 620px; }
.franchise {
  background:
    linear-gradient(180deg, rgba(255, 250, 245, 0.88), rgba(255, 250, 245, 1)),
    url("file_00000000563471f48a75a396e2a2e28c.png") center/cover fixed;
}
.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.partner-card {
  min-height: 190px;
  padding: 22px;
}
.partner-card .icon {
  color: var(--blue);
  width: 28px;
  height: 28px;
  margin-bottom: 18px;
}
.partner-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
}
.partner-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 38px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}
.proof-item {
  min-height: 142px;
  padding: 22px;
  background: var(--white);
}
.proof-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--orange-deep);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
}
.proof-item span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.contact { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 26px;
  align-items: stretch;
}
.contact-panel, .contact-form-wrap {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(29, 25, 22, 0.06);
}
.contact-panel, .contact-form-wrap { padding: 28px; }
.contact-panel h2 { font-size: clamp(30px, 4vw, 48px); }
.contact-panel p {
  margin: 16px 0 26px;
  color: var(--muted);
  line-height: 1.7;
}
.contact-list {
  display: grid;
  gap: 12px;
}
.contact-link {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  color: inherit;
  text-decoration: none;
  border: 1px solid #eee3d9;
  border-radius: 8px;
  background: #fffdf9;
}
.contact-link span:first-child {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  border-radius: 8px;
}
.contact-link b {
  display: block;
  margin-bottom: 3px;
  font-size: 13px;
}
.contact-link small {
  color: var(--muted);
  font-size: 13px;
}
.follow-block {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.follow-block b {
  display: block;
  margin-bottom: 12px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--white);
  text-decoration: none;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  transition: transform 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
}
.social-btn:hover {
  transform: translateY(-2px);
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}
.social-btn.whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
}
.contact-form-wrap h3 {
  margin: 0 0 8px;
  font-size: 21px;
}
.form-intro {
  margin: 0 0 18px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.form-status {
  display: none;
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.6;
  border: 1px solid transparent;
}
.form-status.is-visible { display: block; }
.form-status.is-success { background: var(--success-bg); color: var(--success-text); border-color: rgba(33, 102, 58, 0.14); }
.form-status.is-error { background: var(--error-bg); color: var(--error-text); border-color: rgba(161, 45, 45, 0.14); }
.form-status.is-info { background: var(--info-bg); color: var(--info-text); border-color: rgba(48, 91, 138, 0.14); }
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
label, .form-group {
  display: grid;
  gap: 7px;
  color: #383430;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
input, select, textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fffdf9;
  border: 1px solid #e8ddd2;
  border-radius: 8px;
  outline: none;
}
textarea { min-height: 132px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(36, 84, 244, 0.12);
}
.full { grid-column: 1 / -1; }
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #d74949;
  background: #fffafa;
}
.form-group.error,
.form-group.error .form-error { color: #b03333; }
.form-error {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: none;
}
button[disabled] {
  opacity: 0.7;
  cursor: wait;
}
.contact-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.submissions-toggle {
  width: 100%;
  margin-top: 16px;
}
.submissions-panel {
  margin-top: 18px;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}
.submissions-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.submissions-panel-header h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
}
.submissions-clear {
  min-height: 36px;
  padding: 0 14px;
  font-size: 12px;
}
.submissions-empty {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}
.submissions-list {
  display: grid;
  gap: 12px;
}
.submission-item {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.submission-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 12px;
  color: var(--muted);
}
.submission-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
}
.submission-subject {
  margin: 6px 0;
  color: var(--orange-deep);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.submission-message {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  white-space: pre-wrap;
}
footer {
  padding: 38px 0 26px;
  color: rgba(255, 255, 255, 0.76);
  background: #11100f;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}
.footer-grid img { width: 126px; filter: brightness(0) invert(1); }
.footer-grid p {
  max-width: 620px;
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.6;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: flex-end;
}
.footer-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}
.footer-socials {
  justify-content: flex-end;
  margin-top: 16px;
}
footer .social-btn {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}
.copyright {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
}
@media (max-width: 980px) {
  .nav { display: none; }
  .brand small { display: none; }
  .hero-grid,
  .section-head,
  .model-grid,
  .updates-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; }
  .suite-grid { grid-template-columns: 1fr; }
  .partner-grid, .proof { grid-template-columns: repeat(2, 1fr); }
  .map-visual { min-height: 380px; }
  .contact-actions { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .topbar { padding: 11px 14px; }
  .brand img { width: 118px; }
  .cta { min-height: 38px; padding: 0 13px; font-size: 12px; }
  main { padding-top: 61px; }
  .wrap { width: min(100% - 28px, 1160px); }
  .hero { padding: 46px 0 28px; }
  .hero-panel { padding: 14px; }
  .metric-row,
  .partner-grid,
  .proof,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .section-pad { padding: 68px 0; }
  .footer-links,
  .footer-socials {
    justify-content: flex-start;
  }
  .submission-meta,
  .submissions-panel-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
