:root {
  --ink: #161714;
  --muted: #62655e;
  --line: #ded8cb;
  --paper: #fbfaf6;
  --surface: #f1ede3;
  --saffron: #c87525;
  --maroon: #7b2432;
  --green: #2f6046;
  --blue: #315f7b;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(22, 23, 20, 0.16);
}
 
* {
  box-sizing: border-box;
}
 
html {
  scroll-behavior: smooth;
}
 
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Noto Sans Malayalam", system-ui, sans-serif;
  line-height: 1.6;
}
 
a {
  color: inherit;
}
 
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  background: rgba(251, 250, 246, 0.88);
  border-bottom: 1px solid rgba(222, 216, 203, 0.75);
  backdrop-filter: blur(16px);
}
 
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
 
.brand-mark {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border-radius: 0.5rem;
  background: var(--maroon);
  color: var(--white);
  font-weight: 800;
}
 
.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}
 
.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}
 
.nav-links {
  display: flex;
  gap: 1.4rem;
  font-size: 0.93rem;
  font-weight: 700;
}
 
.nav-links a,
.nav-cta {
  text-decoration: none;
}
 
.nav-links a:hover,
.nav-cta:hover {
  color: var(--maroon);
}

.nav-links .trial-nav {
  padding: 0.38rem 0.64rem;
  border-radius: 999px;
  background: #1fa463;
  color: var(--white);
}

.nav-links .trial-nav:hover {
  background: #178852;
  color: var(--white);
}
 
.nav-cta {
  border: 1px solid var(--ink);
  border-radius: 0.45rem;
  padding: 0.62rem 0.9rem;
  font-weight: 800;
}
 
.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}
 
.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
 
.hero-image {
  object-fit: cover;
}
 
.hero-shade {
  background:
    linear-gradient(90deg, rgba(16, 17, 14, 0.86), rgba(16, 17, 14, 0.48) 48%, rgba(16, 17, 14, 0.18)),
    linear-gradient(0deg, rgba(16, 17, 14, 0.78), rgba(16, 17, 14, 0.1) 58%);
}
 
.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  padding: 8.5rem clamp(1.25rem, 5vw, 4rem) 3.5rem;
}
 
.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--saffron);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
 
.hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2.65rem, 7vw, 6.3rem);
  line-height: 0.98;
  letter-spacing: 0;
}
 
.hero-motto {
  display: inline-flex;
  margin: 0 0 1rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0.45rem;
  background: rgba(255, 255, 255, 0.11);
  color: var(--white);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 800;
  backdrop-filter: blur(12px);
}
 
.hero-copy {
  max-width: 720px;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.25rem);
}
 
.hero-actions,
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
 
.hero-actions {
  margin-top: 1.8rem;
}
 
.button {
  display: inline-flex;
  min-height: 2.8rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.45rem;
  padding: 0.78rem 1.08rem;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}
 
.button.primary {
  background: var(--saffron);
  color: #241100;
}
 
.button.secondary {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.button.trial {
  background: #1fa463;
  border-color: #1fa463;
  color: var(--white);
  box-shadow: 0 12px 28px rgba(31, 164, 99, 0.24);
}

.button.trial:hover {
  background: #178852;
  border-color: #178852;
}
 
.button.outline {
  border-color: var(--line);
}
 
.hero-stats {
  width: min(880px, 100%);
  margin: 3.2rem 0 0;
}
 
.hero-stats div {
  min-width: 150px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.5rem;
  backdrop-filter: blur(14px);
}
 
.hero-stats dt {
  font-size: 1.25rem;
  font-weight: 800;
}
 
.hero-stats dd {
  margin: 0.2rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
}
 
.section {
  padding: clamp(3.5rem, 8vw, 6.5rem) clamp(1.25rem, 5vw, 4rem);
}
 
.section-heading {
  max-width: 780px;
  margin-bottom: 2rem;
}
 
.section-heading h2,
.contact h2 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: 0;
}
 
.section-heading span {
  color: var(--maroon);
}
 
.intro-grid,
.mission-panel,
.directory-panel,
.preview-block,
.community-panel,
.feature-grid,
.plan-grid,
.work-grid,
.launch-grid,
.contact {
  display: grid;
  gap: 1rem;
}
 
.intro-grid {
  grid-template-columns: repeat(3, 1fr);
}
 
.mission {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(18, 19, 16, 0.96), rgba(37, 31, 24, 0.88) 52%, rgba(123, 36, 50, 0.74)),
    linear-gradient(0deg, rgba(18, 19, 16, 0.92), rgba(18, 19, 16, 0.44)),
    url("assets/temple-platform-hero.webp") center / cover;
  color: var(--white);
}
 
.mission::before {
  position: absolute;
  inset: 1.2rem;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.8rem;
  content: "";
}
 
.mission::after {
  position: absolute;
  right: clamp(1.25rem, 5vw, 4rem);
  bottom: clamp(1.25rem, 5vw, 4rem);
  width: min(360px, 40vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 117, 37, 0.9));
  content: "";
}
 
.mission-panel {
  position: relative;
  z-index: 1;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(1.5rem, 5vw, 4rem);
}
 
.mission h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  line-height: 1.02;
  text-wrap: balance;
}
 
.mission p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.74);
}
 
.mission p[lang="ml"] {
  color: rgba(255, 255, 255, 0.78);
}
 
.discount-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.4rem, 3vw, 2.3rem);
  border: 1px solid rgba(248, 211, 139, 0.34);
  border-radius: 0.65rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06)),
    rgba(22, 23, 20, 0.42);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}
 
.discount-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 0.32rem;
  background: linear-gradient(90deg, var(--saffron), #f2d28c, var(--green));
  content: "";
}
 
.discount-card span {
  color: var(--saffron);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
 
.discount-value {
  display: block;
  margin: 1rem 0 0.45rem;
  color: #f6d990;
  font-size: clamp(4.4rem, 9vw, 7rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.85;
  text-shadow: 0 10px 35px rgba(0, 0, 0, 0.28);
}
 
.discount-card h3 {
  max-width: 360px;
  margin-top: 0.7rem;
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}
 
.discount-card p {
  color: rgba(255, 255, 255, 0.78);
}
 
.intro article,
.feature-item,
.plan-card,
.work-card,
.lead-form {
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(22, 23, 20, 0.05);
}
 
.intro article {
  padding: 1.35rem;
}
 
h3 {
  margin: 0 0 0.55rem;
  line-height: 1.2;
}
 
h4 {
  margin: -0.25rem 0 0.6rem;
  color: var(--green);
  font-size: 0.95rem;
}
 
p {
  color: var(--muted);
}
 
p[lang="ml"] {
  color: #4f534b;
  font-size: 0.96rem;
}
 
.feature-band {
  background: var(--surface);
}
 
.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}
 
.feature-item {
  min-height: 210px;
  padding: 1.35rem;
}
 
.feature-item span,
.work-card span,
.plan-label {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
 
.plan-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}
 
.plan-card {
  padding: clamp(1.35rem, 3vw, 2rem);
}
 
.plan-card.featured {
  border-color: rgba(123, 36, 50, 0.45);
  box-shadow: var(--shadow);
}
 
.plan-card.support-plan {
  border-color: rgba(47, 96, 70, 0.35);
  background:
    linear-gradient(145deg, rgba(47, 96, 70, 0.08), rgba(255, 255, 255, 0.94)),
    var(--white);
}
 
.support-plan .plan-label,
.support-plan h3 {
  color: var(--green);
}
 
.plan-card h3 {
  font-size: 1.8rem;
}
 
.price {
  margin: 1rem 0 0.1rem;
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  font-weight: 800;
  line-height: 1;
}
 
.price span {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}
 
.monthly {
  margin: 0.45rem 0 1rem;
  color: var(--maroon);
  font-size: 0.92rem;
  font-weight: 800;
}
 
.discount {
  margin: -0.45rem 0 1rem;
  padding: 0.55rem 0.7rem;
  background: rgba(47, 96, 70, 0.1);
  border: 1px solid rgba(47, 96, 70, 0.22);
  border-radius: 0.45rem;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 800;
}

.guarantee-badge {
  margin: -0.25rem 0 0.75rem;
  padding: 0.7rem 0.8rem;
  background: #fff3c4;
  border: 1px solid #e6bd45;
  border-left: 0.34rem solid var(--saffron);
  border-radius: 0.45rem;
  color: #5e3a04;
  font-size: 0.94rem;
  font-weight: 900;
}
 
.subdomain-offer {
  margin: 0.7rem 0 0.75rem;
  padding: 0.55rem 0.7rem;
  background: rgba(200, 117, 37, 0.12);
  border: 1px solid rgba(200, 117, 37, 0.26);
  border-radius: 0.45rem;
  color: #8b4b12;
  font-size: 0.9rem;
  font-weight: 800;
}
 
.plan-desc {
  min-height: 3.5rem;
}
 
.plan-card ul {
  display: grid;
  gap: 0.65rem;
  margin: 1.4rem 0;
  padding: 0;
  list-style: none;
}
 
.plan-card li {
  position: relative;
  padding-left: 1.4rem;
}
 
.plan-card li::before {
  position: absolute;
  left: 0;
  color: var(--saffron);
  content: "✓";
  font-weight: 800;
}

.directory {
  background:
    linear-gradient(135deg, rgba(47, 96, 70, 0.11), rgba(200, 117, 37, 0.08)),
    var(--paper);
}

.directory-panel {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: center;
  gap: clamp(1rem, 4vw, 3rem);
}

.directory h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  line-height: 1.04;
}

.directory p {
  max-width: 760px;
}

.directory-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.directory-card {
  padding: clamp(1.2rem, 3vw, 1.8rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 0.4rem solid var(--green);
  border-radius: 0.65rem;
  box-shadow: 0 18px 42px rgba(22, 23, 20, 0.08);
}

.directory-card span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.directory-card ul {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.directory-card li {
  position: relative;
  padding-left: 1.4rem;
}

.directory-card li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 800;
}

.previews {
  background: var(--surface);
}

.preview-block {
  grid-template-columns: 0.75fr 1.25fr;
  align-items: start;
  margin-top: 1rem;
}

.preview-block + .preview-block {
  margin-top: 2rem;
}

.preview-copy {
  position: sticky;
  top: 6rem;
}

.preview-copy span,
.community-card span {
  color: var(--saffron);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.preview-copy h3,
.community-card h3 {
  margin: 0.45rem 0 0.65rem;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1.12;
}

.preview-copy p,
.community-card p {
  color: var(--muted);
}

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

.admin-preview .screenshot-grid {
  grid-template-columns: minmax(0, 1fr);
}

.video-preview {
  align-items: center;
}

.video-card {
  overflow: hidden;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  box-shadow: 0 18px 42px rgba(22, 23, 20, 0.08);
}

.video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #161714;
}

.video-card figcaption {
  display: grid;
  gap: 0.18rem;
  padding: 0.85rem 0.95rem;
}

.video-card figcaption span {
  color: var(--muted);
  font-size: 0.82rem;
}

.screenshot-card {
  overflow: hidden;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  box-shadow: 0 18px 42px rgba(22, 23, 20, 0.08);
}

.screenshot-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: #f7f5ef;
}

.screenshot-card.is-empty::before {
  display: grid;
  min-height: 220px;
  place-items: center;
  padding: 1rem;
  background:
    linear-gradient(135deg, rgba(123, 36, 50, 0.08), rgba(47, 96, 70, 0.1)),
    var(--white);
  color: var(--muted);
  content: "Screenshot slot";
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.screenshot-card figcaption {
  display: grid;
  gap: 0.18rem;
  padding: 0.85rem 0.95rem;
}

.screenshot-card figcaption span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.community {
  background:
    linear-gradient(135deg, rgba(49, 95, 123, 0.1), rgba(47, 96, 70, 0.12)),
    var(--paper);
}

.community-panel {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  align-items: center;
  gap: clamp(1rem, 4vw, 3rem);
}

.community h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 4.6vw, 3.8rem);
  line-height: 1.04;
}

.community p {
  max-width: 760px;
}

.community-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.community-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 1rem;
  max-width: 860px;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.community-feature-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 700;
}

.community-feature-list li::before {
  position: absolute;
  left: 0;
  color: var(--blue);
  content: "✓";
  font-weight: 800;
}

.community-card {
  padding: clamp(1.2rem, 3vw, 1.8rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 0.4rem solid var(--blue);
  border-radius: 0.65rem;
  box-shadow: 0 18px 42px rgba(22, 23, 20, 0.08);
}

.service-distinction {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.service-distinction > div {
  padding: clamp(1rem, 2.5vw, 1.35rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 0.32rem solid var(--green);
  border-radius: 0.5rem;
}

.service-distinction > div + div {
  border-left-color: var(--maroon);
}

.service-distinction span {
  color: var(--saffron);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-distinction h3 {
  margin: 0.4rem 0 0.55rem;
}

.service-distinction p {
  margin: 0;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 0.85rem;
  color: var(--maroon);
  font-weight: 800;
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.18em;
}
 
.policy-box {
  margin-top: 1rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
}
 
.policy-box p {
  max-width: 940px;
}
 
.update-rates {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}
 
.update-rates span {
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  background: var(--white);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}
 
.work {
  background: #23231f;
  color: var(--white);
}
 
.work .section-heading h2 {
  color: var(--white);
}
 
.work-grid {
  grid-template-columns: repeat(3, 1fr);
}
 
.work-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 1.35rem;
  color: inherit;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}
 
.work-card::before {
  position: absolute;
  inset: auto -2.5rem -3rem auto;
  width: 10rem;
  height: 10rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
}
 
.work-card::after {
  position: absolute;
  right: 1rem;
  bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.18);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
}
 
.work-card span,
.work-card h3,
.work-card p {
  position: relative;
  z-index: 1;
}
 
.work-card p {
  color: rgba(255, 255, 255, 0.68);
}
 
.work-platform {
  background:
    linear-gradient(145deg, rgba(47, 96, 70, 0.9), rgba(35, 35, 31, 0.82)),
    radial-gradient(circle at 20% 15%, rgba(246, 217, 144, 0.24), transparent 36%);
}
 
.work-platform::after {
  content: "TD";
}
 
.work-mulaykal {
  background:
    linear-gradient(145deg, rgba(123, 36, 50, 0.88), rgba(49, 95, 123, 0.72)),
    radial-gradient(circle at 18% 16%, rgba(200, 117, 37, 0.36), transparent 34%);
}
 
.work-mulaykal::after {
  content: "ॐ";
  font-size: 4.6rem;
}
 
.work-upcoming {
  background:
    linear-gradient(145deg, rgba(200, 117, 37, 0.82), rgba(35, 35, 31, 0.86)),
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.18), transparent 38%);
}
 
.work-upcoming::after {
  content: "+";
}
 
.launch-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}
 
.launch-copy {
  max-width: 520px;
}
 
.steps {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
 
.steps li {
  display: grid;
  gap: 0.25rem;
  padding: 1.1rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
}
 
.steps span {
  color: var(--muted);
}

.product-paths {
  background: var(--paper);
}

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

.path-card {
  display: grid;
  align-content: start;
  gap: 0.8rem;
  min-height: 310px;
  padding: 1.35rem;
  border-radius: 0.7rem;
  color: var(--white);
  box-shadow: 0 20px 55px rgba(22, 23, 20, 0.12);
}

.path-card span {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.78;
}

.path-card h3 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.08;
}

.path-card p {
  margin: 0;
  color: rgba(255,255,255,0.8);
}

.path-card .button {
  align-self: end;
  width: fit-content;
  margin-top: auto;
}

.path-listing {
  background: linear-gradient(145deg, #2f6046, #1f4b35);
}

.path-website {
  background: linear-gradient(145deg, #7b2432, #4f1d27);
}

.path-tms {
  background: linear-gradient(145deg, #315f7b, #173d54);
}

.service-note {
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 0.32rem solid var(--green);
  border-radius: 0.5rem;
  color: var(--ink);
  font-weight: 700;
}

.donation-warning {
  padding: 0.9rem 1rem;
  background: #fff8e5;
  border: 1px solid #efd892;
  border-left: 0.32rem solid #b7791f;
  border-radius: 0.5rem;
  color: #4a3412;
  font-weight: 700;
}
 
.contact {
  grid-template-columns: 1fr 0.8fr;
  align-items: start;
  background: var(--surface);
}
 
.lead-form {
  gap: 1rem;
  padding: 1.2rem;
}
 
.lead-form,
.lead-form label {
  display: grid;
}
 
.lead-form label {
  gap: 0.35rem;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}
 
input,
select {
  width: 100%;
  min-height: 2.8rem;
  padding: 0.78rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}
 
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}
 
.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  background: var(--white);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.contact-links svg {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  fill: currentColor;
}
 
.contact-links .whatsapp-link,
.contact-links .trial-link,
.contact-links .submit-link,
.whatsapp-submit {
  background: #1fa463;
  border-color: #1fa463;
  color: var(--white);
  box-shadow: 0 12px 28px rgba(31, 164, 99, 0.24);
}

.contact-links .whatsapp-link::before,
.whatsapp-submit::before {
  content: "✆";
  margin-right: 0.45rem;
}

.contact-links .submit-link {
  background: var(--maroon);
  border-color: var(--maroon);
}

.contact-links .telegram-link {
  background: #229ed9;
  border-color: #229ed9;
  color: var(--white);
}

.contact-links .instagram-link {
  background: #c13584;
  border-color: #c13584;
  color: var(--white);
}

.contact-links .facebook-link {
  background: #1877f2;
  border-color: #1877f2;
  color: var(--white);
}

.contact-links .trial-link::before {
  content: "Free";
  margin-right: 0.45rem;
  padding: 0.1rem 0.34rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 0.68rem;
  text-transform: uppercase;
}
 
.whatsapp-submit:hover,
.contact-links .trial-link:hover,
.contact-links .whatsapp-link:hover {
  background: #178852;
  border-color: #178852;
}

.contact-links .social-link:hover {
  filter: brightness(0.92);
}
 
.form-fallback {
  display: inline-flex;
  justify-content: center;
  color: var(--maroon);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}
 
.footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem clamp(1.25rem, 5vw, 4rem);
  background: var(--ink);
  color: var(--white);
}
 
.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}
 
.footer p:first-child {
  color: var(--white);
  font-weight: 800;
}

.footer a {
  color: var(--white);
  font-weight: 800;
  text-decoration-color: rgba(255, 255, 255, 0.45);
  text-underline-offset: 0.18em;
}

.legal-main {
  padding: 7rem clamp(1.25rem, 5vw, 4rem) 4rem;
  background:
    linear-gradient(180deg, rgba(123, 36, 50, 0.08), rgba(251, 250, 246, 0) 22rem),
    var(--paper);
}

.legal-document {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: clamp(1.35rem, 4vw, 3rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  box-shadow: 0 18px 50px rgba(22, 23, 20, 0.08);
}

.legal-document h1 {
  margin: 0 0 0.75rem;
  color: var(--ink);
  font-size: clamp(2.1rem, 6vw, 4rem);
  line-height: 1;
}

.legal-updated {
  margin: 0 0 2rem;
  color: var(--muted);
  font-weight: 700;
}

.legal-document section {
  padding-top: 1.35rem;
  margin-top: 1.35rem;
  border-top: 1px solid var(--line);
}

.legal-document h2 {
  margin: 0 0 0.7rem;
  color: var(--maroon);
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  line-height: 1.2;
}

.legal-document p,
.legal-document li {
  color: #303229;
  font-size: 1rem;
}

.legal-document ul {
  padding-left: 1.25rem;
}

.legal-document a {
  color: var(--maroon);
  font-weight: 800;
}

.tms-product-page {
  background: var(--paper);
}

.tms-product-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: 9rem clamp(1.25rem, 5vw, 4rem) 4rem;
  background:
    linear-gradient(160deg, rgba(26,18,8,0.96), rgba(15,26,18,0.94)),
    var(--ink);
  color: var(--white);
}

.tms-product-copy h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.2rem, 8vw, 6.2rem);
  line-height: 0.94;
}

.tms-product-copy h1 span {
  color: #c87525;
}

.tms-product-subtitle {
  max-width: 720px;
  margin: 1rem 0;
  color: rgba(255,255,255,0.88);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 800;
}

.tms-product-copy > p:not(.eyebrow):not(.tms-product-subtitle) {
  max-width: 720px;
  color: rgba(255,255,255,0.7);
}

.tms-hero-media {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.08);
  box-shadow: 0 28px 90px rgba(0,0,0,0.28);
}

.tms-hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: #f7f5ef;
}

.tms-hero-media figcaption {
  padding: 0.85rem 1rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.86rem;
}

.tms-product-band {
  background: var(--surface);
}

.tms-product-video {
  width: min(1080px, 100%);
  margin: 0 auto;
}

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

.tms-product-feature-grid article {
  padding: 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  box-shadow: 0 18px 42px rgba(22, 23, 20, 0.06);
}

.tms-product-feature-grid span {
  color: var(--saffron);
  font-size: 0.78rem;
  font-weight: 800;
}

.tms-product-feature-grid h3 {
  margin: 0.5rem 0 0.45rem;
  color: var(--maroon);
  font-size: 1.1rem;
}

.tms-product-feature-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.tms-report-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
}

.tms-report-list span {
  padding: 0.7rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.tms-product-pricing {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: 2rem;
  align-items: start;
  background: linear-gradient(160deg, #1a1208 0%, #0f1a12 100%);
  color: var(--white);
}

.tms-product-pricing h2 {
  margin: 0 0 1rem;
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1;
}

.tms-product-pricing p {
  color: rgba(255,255,255,0.72);
}

.tms-download-panel {
  padding: 1.1rem;
  border: 1px solid rgba(200,117,37,0.4);
  border-radius: 0.7rem;
  background: rgba(255,255,255,0.08);
}

.website-product-page {
  background: var(--paper);
}

.website-hero {
  position: relative;
  display: grid;
  min-height: 720px;
  padding: 9rem clamp(1.25rem, 5vw, 4rem) 4rem;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.website-hero-image,
.website-hero-shade {
  position: absolute;
  inset: 0;
}

.website-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.website-hero-shade {
  background: linear-gradient(90deg, rgba(16,17,14,0.92), rgba(16,17,14,0.56) 54%, rgba(16,17,14,0.24));
}

.website-hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.website-hero-content h1 {
  max-width: 760px;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.94;
}

.website-hero-content p:not(.eyebrow) {
  max-width: 690px;
  color: rgba(255,255,255,0.78);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.website-clarity {
  background: var(--surface);
}

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

.website-feature-grid article {
  padding: 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  box-shadow: 0 18px 42px rgba(22, 23, 20, 0.06);
}

.website-feature-grid span {
  color: var(--saffron);
  font-size: 0.78rem;
  font-weight: 800;
}

.website-feature-grid h3 {
  margin: 0.5rem 0 0.45rem;
  color: var(--maroon);
  font-size: 1.1rem;
}

.website-feature-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.website-admin-band,
.website-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 2rem;
  align-items: center;
  background: var(--surface);
}

.website-admin-preview {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(22, 23, 20, 0.09);
}

.website-admin-preview img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.website-admin-preview figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.website-admin-preview strong {
  color: var(--ink);
}

.website-cta {
  background: linear-gradient(160deg, #f7f1e6 0%, #eef4ef 100%);
}

.website-cta-actions {
  display: grid;
  gap: 0.75rem;
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }
 
  .nav-links {
    display: none;
  }
 
  .hero {
    min-height: 920px;
  }
 
  .hero-shade {
    background: linear-gradient(0deg, rgba(16, 17, 14, 0.9), rgba(16, 17, 14, 0.36));
  }
 
  .mission::before {
    inset: 0.8rem;
  }
 
  .mission::after {
    width: 55vw;
  }
 
  .intro-grid,
  .mission-panel,
  .directory-panel,
  .product-path-grid,
  .preview-block,
  .community-panel,
  .feature-grid,
  .plan-grid,
  .service-distinction,
  .work-grid,
  .launch-grid,
  .contact,
  .tms-product-hero,
  .tms-product-pricing,
  .website-admin-band,
  .website-cta {
    grid-template-columns: 1fr;
  }

  .tms-product-feature-grid,
  .website-feature-grid {
    grid-template-columns: 1fr;
  }

  .website-hero {
    min-height: 760px;
  }

  .website-hero-shade {
    background: linear-gradient(0deg, rgba(16,17,14,0.9), rgba(16,17,14,0.38));
  }
 
  .plan-desc {
    min-height: auto;
  }
 
  .footer {
    display: grid;
  }

  .preview-copy {
    position: static;
  }

  .screenshot-grid,
  .admin-preview .screenshot-grid {
    grid-template-columns: 1fr;
  }

  .community-feature-list {
    grid-template-columns: 1fr;
  }
}
 
@media (max-width: 520px) {
  .site-header {
    padding: 0.85rem 1rem;
  }
 
  .brand-mark {
    width: 2.25rem;
    height: 2.25rem;
  }
 
  .nav-cta {
    padding: 0.52rem 0.72rem;
    font-size: 0.86rem;
  }
 
  .hero {
    min-height: 840px;
  }
 
  .hero-content {
    padding-inline: 1rem;
  }
 
  .hero-stats div {
    width: 100%;
  }
 
  .discount-value {
    font-size: 4.5rem;
  }
}
 
/* ── Logo in brand mark ── */
.brand-mark {
  background: transparent;
  padding: 0;
  overflow: hidden;
}
.brand-mark img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  display: block;
}
 
/* ── TMS Section ── */
.tms-section {
  background: linear-gradient(160deg, #1a1208 0%, #2a1a0e 40%, #0f1a12 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
 
.tms-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 20%, rgba(200,117,37,0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 75%, rgba(47,96,70,0.22) 0%, transparent 45%);
  pointer-events: none;
}
 
.tms-inner {
  position: relative;
  z-index: 1;
}
 
.tms-eyebrow {
  color: #c87525 !important;
}
 
.tms-title {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 0.95;
  color: var(--white);
}
 
.tms-accent {
  color: #c87525;
}
 
.tms-subtitle {
  margin: 0.4rem 0 1rem;
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
 
.tms-desc {
  max-width: 680px;
  color: rgba(255,255,255,0.82);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
}
 
.tms-ml {
  color: rgba(255,255,255,0.6) !important;
  font-size: 0.94rem !important;
  max-width: 680px;
}
 
.tms-platform-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.6rem 0 2.4rem;
}
 
.tms-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  border-radius: 2rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
 
.tms-badge-win   { background: rgba(0,120,212,0.2);  border: 1px solid rgba(0,120,212,0.45); color: #7ec8ff; }
.tms-badge-linux { background: rgba(255,159,0,0.15); border: 1px solid rgba(255,159,0,0.35); color: #ffc966; }
.tms-badge-usb   { background: rgba(200,117,37,0.2); border: 1px solid rgba(200,117,37,0.4); color: #f0b36a; }
.tms-badge-offline { background: rgba(47,96,70,0.25); border: 1px solid rgba(47,96,70,0.5); color: #7ed9a0; }
 
.tms-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}
 
.tms-modules-label {
  color: rgba(255,255,255,0.45);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}
 
.tms-module-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
 
.tms-module {
  padding: 1.1rem 1.2rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.55rem;
  transition: background 0.2s, border-color 0.2s;
}
 
.tms-module:hover {
  background: rgba(200,117,37,0.1);
  border-color: rgba(200,117,37,0.3);
}
 
.tms-module-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  line-height: 1;
}
 
.tms-module h4 {
  color: var(--white);
  font-size: 0.92rem;
  margin: 0 0 0.4rem;
  font-weight: 800;
}
 
.tms-module p {
  color: rgba(255,255,255,0.58);
  font-size: 0.83rem;
  margin: 0 0 0.3rem;
}
 
.tms-module p[lang="ml"] {
  color: rgba(255,255,255,0.38);
  font-size: 0.78rem;
}
 
.tms-highlight-card {
  padding: clamp(1.4rem, 3vw, 2rem);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,117,37,0.35);
  border-radius: 0.7rem;
  margin-bottom: 1rem;
}
 
.tms-hl-label {
  color: #c87525;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
 
.tms-highlight-card h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin: 0.5rem 0 0.75rem;
}
 
.tms-highlight-card p {
  color: rgba(255,255,255,0.68);
  font-size: 0.9rem;
}
 
.tms-highlights {
  display: grid;
  gap: 0.55rem;
  margin: 1.2rem 0 1.4rem;
  padding: 0;
  list-style: none;
}
 
.tms-highlights li {
  position: relative;
  padding-left: 1.4rem;
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
}
 
.tms-highlights li::before {
  position: absolute;
  left: 0;
  color: #c87525;
  content: "✓";
  font-weight: 800;
}

.tms-committee-card {
  margin: 1.2rem 0 1rem;
  padding: 1rem;
  border: 1px solid rgba(126,217,160,0.28);
  border-radius: 0.55rem;
  background: rgba(47,96,70,0.16);
}

.tms-committee-card > span {
  display: block;
  color: #7ed9a0;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tms-committee-card h3 {
  margin: 0.45rem 0 0.85rem;
  color: var(--white);
  font-size: 1.18rem;
  line-height: 1.25;
}

.tms-committee-grid {
  display: grid;
  gap: 0.8rem;
}

.tms-committee-grid strong {
  display: block;
  color: rgba(255,255,255,0.9);
  font-size: 0.88rem;
}

.tms-committee-grid p {
  margin: 0.22rem 0 0;
  color: rgba(255,255,255,0.62);
  font-size: 0.8rem;
  line-height: 1.5;
}

.tms-price-box {
  margin: 1.2rem 0 1rem;
  padding: 1rem;
  border: 1px solid rgba(200,117,37,0.45);
  border-radius: 0.55rem;
  background: rgba(255,255,255,0.08);
}

.tms-price-box span {
  display: block;
  color: #c87525;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tms-price-box strong {
  display: block;
  margin: 0.15rem 0 0.45rem;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.tms-price-box p {
  margin: 0.45rem 0 0;
  color: rgba(255,255,255,0.76);
  font-size: 0.88rem;
}

.tms-price-box .trial-note {
  padding-top: 0.55rem;
  border-top: 1px solid rgba(255,255,255,0.16);
  color: rgba(219,255,237,0.92);
}

.trial-downloads {
  scroll-margin-top: 5rem;
}

.trial-downloads-title {
  margin: 0 0 0.55rem;
  color: rgba(219,255,237,0.95);
  font-size: 0.84rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.trial-download-notes {
  margin: 0 0 0.85rem;
  padding: 0.78rem 0.85rem;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 0.5rem;
  background: rgba(255,255,255,0.07);
}

.trial-download-notes p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 0.82rem;
  line-height: 1.5;
}

.trial-download-notes p + p {
  margin-top: 0.45rem;
}

.trial-info-form {
  display: grid;
  gap: 0.65rem;
  margin: 0 0 0.95rem;
}

.trial-info-form label {
  display: grid;
  gap: 0.3rem;
  color: rgba(255,255,255,0.78);
  font-size: 0.78rem;
  font-weight: 800;
}

.trial-info-form label span {
  color: rgba(255,255,255,0.48);
  font-weight: 700;
}

.trial-info-form input {
  min-height: 2.45rem;
  padding: 0.62rem 0.7rem;
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.09);
  color: var(--white);
  font-size: 0.86rem;
}

.trial-info-form input::placeholder {
  color: rgba(255,255,255,0.42);
}

.trial-download-hint {
  margin: 0 0 0.35rem;
  color: rgba(255,255,255,0.68);
  font-size: 0.78rem;
  line-height: 1.45;
}
 
.tms-cta {
  width: 100%;
  margin-bottom: 0.6rem;
}
 
.tms-pricing-note {
  text-align: center;
  color: rgba(255,255,255,0.42) !important;
  font-size: 0.8rem !important;
  margin: 0 !important;
}
 
.tms-audit-badge {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.2rem;
  background: rgba(47,96,70,0.2);
  border: 1px solid rgba(47,96,70,0.4);
  border-radius: 0.55rem;
}
 
.tms-audit-badge > span {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  background: rgba(47,96,70,0.5);
  border-radius: 50%;
  color: #7ed9a0;
  font-weight: 800;
  font-size: 1rem;
}
 
.tms-audit-badge strong {
  display: block;
  color: var(--white);
  font-size: 0.92rem;
  margin-bottom: 0.25rem;
}
 
.tms-audit-badge p {
  color: rgba(255,255,255,0.58);
  font-size: 0.83rem;
  margin: 0;
}

/* Readability overrides for dark panels. */
.tms-subtitle,
.tms-ml,
.tms-module p,
.tms-module p[lang="ml"],
.tms-highlight-card p,
.tms-pricing-note,
.tms-audit-badge p {
  color: rgba(255, 255, 255, 0.78) !important;
}

.tms-module p[lang="ml"],
.tms-pricing-note {
  color: rgba(255, 255, 255, 0.68) !important;
}

.tms-modules-label {
  color: rgba(255, 255, 255, 0.72);
}
 
/* ── Floating WhatsApp ── */
.whatsapp-float {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 99;
  width: 3.2rem;
  height: 3.2rem;
  background: #1fa463;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.4rem;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(31,164,99,0.42);
}
 
@media (max-width: 860px) {
  .whatsapp-float {
    display: flex;
  }
 
  .tms-grid {
    grid-template-columns: 1fr;
  }
 
  .tms-module-grid {
    grid-template-columns: 1fr;
  }
}
 
@media (max-width: 520px) {
  .tms-module-grid {
    grid-template-columns: 1fr;
  }
}
 
