:root {
  --bg: #ffffff;
  --ink: #111827;
  --muted: #586274;
  --line: #dbe7f5;
  --soft: #f5f9ff;
  --soft-strong: #edf5ff;
  --blue: #1266f1;
  --blue-deep: #0b4ab8;
  --green: #0f9d78;
  --green-soft: #e7f7f2;
  --shadow: 0 18px 50px rgba(17, 24, 39, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
  letter-spacing: 0;
}

.container {
  width: calc(100% - 40px);
  max-width: 1120px;
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(219, 231, 245, 0.95);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 3px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: 18px;
  font-weight: 800;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 13px;
  color: var(--muted);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--blue-deep);
  background: var(--soft-strong);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  background: var(--green);
  color: #fff;
  border-radius: 8px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(15, 157, 120, 0.2);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  width: 44px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 8px;
  padding: 8px;
  font-size: 0;
  font-weight: 800;
}

.nav-toggle span {
  display: none;
}

.nav-toggle::before {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 8px;
  box-shadow: 0 -6px 0 var(--ink), 0 6px 0 var(--ink);
}

.image-backed {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.image-backed::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("infronext-logo.jpeg");
  background-repeat: no-repeat;
  background-position: right 8% center;
  background-size: 520px auto;
  opacity: 0.075;
  pointer-events: none;
}

.hero {
  min-height: 610px;
  padding: 100px 0 72px;
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  max-width: 790px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  color: var(--ink);
}

h1 {
  max-width: 760px;
  font-size: 58px;
  font-weight: 900;
}

h2 {
  font-size: 38px;
  font-weight: 880;
}

h3 {
  font-size: 21px;
  font-weight: 850;
}

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

.hero-copy {
  max-width: 680px;
  margin-top: 22px;
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-actions.center {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 16px 30px rgba(18, 102, 241, 0.2);
}

.btn.primary:hover {
  background: var(--blue-deep);
}

.btn.secondary {
  background: #fff;
  color: var(--blue-deep);
  border-color: var(--line);
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.06);
}

.btn.secondary:hover {
  border-color: rgba(18, 102, 241, 0.38);
}

.hero-note {
  display: inline-flex;
  margin-top: 22px;
  padding: 10px 13px;
  color: var(--blue-deep);
  background: var(--soft-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.trust-band {
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 28px 0;
}

.trust-grid div {
  min-height: 96px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  margin-bottom: 6px;
  font-size: 17px;
}

.trust-grid span {
  color: var(--muted);
  font-size: 15px;
}

.section {
  padding: 86px 0;
}

.soft-section {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 730px;
  margin-bottom: 36px;
}

.section-heading.narrow {
  max-width: 650px;
}

.section-heading p:last-child {
  margin-top: 14px;
  font-size: 18px;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.service-card,
.feature-card,
.detail-panel,
.pricing-card,
.team-card,
.mission-grid article,
.process-list article,
.usp-grid article,
.contact-methods a {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(17, 24, 39, 0.05);
}

.service-card {
  min-height: 230px;
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover,
.feature-card:hover,
.pricing-card:hover,
.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(18, 102, 241, 0.35);
  box-shadow: var(--shadow);
}

.service-card h3,
.feature-card h3,
.pricing-card h2,
.detail-panel h2,
.team-card h3 {
  margin-top: 16px;
}

.service-card p,
.feature-card p,
.pricing-card p,
.detail-panel p {
  margin-top: 12px;
}

.card-icon,
.person-initial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--blue-deep);
  background: var(--soft-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
}

.wide-card {
  grid-column: span 2;
}

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

.feature-card {
  min-height: 350px;
  padding: 28px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.feature-card.highlight {
  border-color: rgba(18, 102, 241, 0.42);
  box-shadow: 0 20px 60px rgba(18, 102, 241, 0.1);
}

.feature-label {
  display: inline-flex;
  padding: 7px 10px;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

li {
  position: relative;
  margin: 10px 0;
  padding-left: 22px;
  color: var(--muted);
}

li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  background: var(--blue);
  border-radius: 8px;
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--blue-deep);
  font-weight: 900;
}

.text-link:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: steps;
}

.process-list article {
  min-height: 230px;
  padding: 24px;
}

.process-list span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 900;
}

.process-list h3 {
  font-size: 19px;
}

.process-list p {
  margin-top: 12px;
}

.pricing-snapshot {
  background: var(--ink);
  color: #fff;
}

.pricing-snapshot h2,
.pricing-snapshot p,
.pricing-snapshot .eyebrow {
  color: #fff;
}

.pricing-snapshot p {
  opacity: 0.78;
}

.pricing-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
}

.pricing-layout .btn {
  margin-top: 26px;
}

.price-pair {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.price-pair article {
  min-height: 180px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}

.price-pair span,
.price-pair strong,
.price-pair p,
.price-pair small {
  display: block;
}

.price-pair span {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
}

.price-pair strong {
  margin-top: 8px;
  color: #fff;
  font-size: 42px;
  line-height: 1;
}

.price-pair small {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.7);
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.usp-grid article {
  min-height: 150px;
  padding: 26px;
  border-left: 4px solid var(--blue);
}

.usp-grid strong,
.usp-grid span {
  display: block;
}

.usp-grid strong {
  font-size: 21px;
  line-height: 1.25;
}

.usp-grid span {
  margin-top: 12px;
  color: var(--muted);
}

.cta-section {
  text-align: center;
}

.cta-inner {
  max-width: 760px;
}

.cta-inner h2 {
  margin-bottom: 16px;
}

.page-hero {
  padding: 92px 0 70px;
  border-bottom: 1px solid var(--line);
}

.page-hero .container {
  max-width: 820px;
}

.page-hero h1 {
  font-size: 50px;
}

.page-hero p:last-child {
  max-width: 680px;
  margin-top: 20px;
  font-size: 19px;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
}

.detail-panel {
  padding: 30px;
}

.detail-panel.primary-panel {
  grid-row: span 2;
}

.check-list li::before {
  background: var(--green);
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 44px;
  align-items: center;
}

.split-section h2 {
  margin-bottom: 18px;
}

.split-section p + p {
  margin-top: 14px;
}

.mini-list {
  display: grid;
  gap: 12px;
}

.mini-list span {
  display: block;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 850;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  min-height: 560px;
  padding: 28px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.pricing-card.featured {
  border-color: rgba(18, 102, 241, 0.5);
  box-shadow: var(--shadow);
}

.pricing-card strong {
  display: block;
  margin-top: 14px;
  color: var(--blue-deep);
  font-size: 42px;
  line-height: 1;
}

.pricing-card .btn {
  margin-top: auto;
}

.pricing-note {
  max-width: 800px;
  text-align: center;
}

.pricing-note h2 {
  margin-bottom: 16px;
}

.pricing-note small {
  display: block;
  margin-top: 18px;
  color: var(--muted);
}

.mission-grid {
  display: grid;
  gap: 18px;
}

.mission-grid article {
  padding: 26px;
}

.mission-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-deep);
  font-weight: 900;
}

.founder-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
  max-width: 880px;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.founder-panel h3 {
  font-size: 28px;
}

.role {
  margin-top: 6px;
  color: var(--blue-deep);
  font-weight: 900;
}

.founder-panel p:not(.role) {
  margin-top: 14px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.team-card {
  min-height: 250px;
  padding: 28px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.team-card p {
  margin-top: 10px;
}

.team-note {
  max-width: 760px;
  margin-top: 22px;
  padding: 18px 20px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 800;
}

.contact-section {
  padding-top: 76px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 14px;
}

.contact-methods {
  display: grid;
  gap: 14px;
  margin: 28px 0;
}

.contact-methods a {
  display: block;
  padding: 20px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.contact-methods a:hover {
  transform: translateY(-3px);
  border-color: rgba(18, 102, 241, 0.35);
}

.contact-methods span,
.contact-methods strong {
  display: block;
}

.contact-methods span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.contact-methods strong {
  margin-top: 4px;
  font-size: 20px;
}

.contact-form {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form h2 {
  margin-bottom: 22px;
  font-size: 28px;
}

.contact-form label {
  display: block;
  margin: 16px 0 7px;
  color: var(--ink);
  font-weight: 850;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(18, 102, 241, 0.6);
  box-shadow: 0 0 0 4px rgba(18, 102, 241, 0.1);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .btn {
  width: 100%;
  margin-top: 22px;
}

.form-status {
  min-height: 24px;
  margin-top: 12px;
  color: var(--green);
  font-weight: 800;
}

.break-word {
  overflow-wrap: anywhere;
}

.feature-examples {
  margin-top: 12px;
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 800;
}

.subtle-trust-strip {
  padding: 10px 0 24px;
}

.subtle-trust-strip p {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
  box-shadow: 0 14px 30px rgba(12, 53, 105, 0.08);
}

.subtle-trust-strip p::before {
  content: "";
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, var(--green), #18c295);
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='m13.3 23.3-7-7 2.1-2.1 4.9 4.9 10.3-10.3 2.1 2.1-12.4 12.4Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='m13.3 23.3-7-7 2.1-2.1 4.9 4.9 10.3-10.3 2.1 2.1-12.4 12.4Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.who-for-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.who-for-grid article {
  padding: 24px 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(194, 216, 241, 0.82);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(12, 53, 105, 0.07);
}

.who-for-grid h3 {
  font-size: 20px;
}

.who-for-grid p {
  margin-top: 12px;
}

.service-extension {
  padding-top: 0;
}

.campaign-panel {
  max-width: 860px;
}

.terms-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.terms-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(194, 216, 241, 0.82);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(12, 53, 105, 0.07);
}

.terms-card h2 {
  font-size: 28px;
}

.terms-list {
  margin-top: 18px;
}

.contact-helper {
  margin-top: 14px;
  color: var(--blue-deep);
  font-weight: 850;
}

.contact-link-card,
.footer-contact-link,
.social-link {
  position: relative;
}

.contact-link-card {
  padding-left: 56px !important;
}

.contact-link-card::before,
.footer-contact-link::before,
.social-link::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 20px;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-mask: var(--contact-icon) center / contain no-repeat;
  mask: var(--contact-icon) center / contain no-repeat;
}

.footer-contact-link::before,
.social-link::before {
  position: static;
  display: inline-block;
  margin-right: 8px;
  vertical-align: -5px;
}

.contact-link-card.phone,
.footer-contact-link.phone {
  --contact-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M22.8 19.3c-1.1-.5-2.5-1.2-3-.9-.4.2-1 1.2-1.3 1.5-.3.3-.6.3-1 .1-2.4-1.2-4.4-3.1-5.6-5.5-.2-.4-.2-.8.1-1.1.3-.3 1.2-.9 1.4-1.3.3-.5-.4-1.8-.9-2.9-.4-1.1-.8-1.8-1.4-1.8H9.8c-.6 0-1.1.3-1.5.8-.5.6-1.3 1.7-1.3 4.1 0 2.4 1.7 4.7 2 5 .2.3 3.4 5.3 8.4 7.4 5 2.2 5 1.4 5.9 1.3.9-.1 3-1.2 3.4-2.4.4-1.2.4-2.2.3-2.4-.2-.2-.6-.3-1.2-.6Z'/%3E%3C/svg%3E");
}

.contact-link-card.email,
.footer-contact-link.email {
  --contact-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M5 8h22a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V10a2 2 0 0 1 2-2Zm0 3v.7l11 7.4 11-7.4V11l-11 7.3L5 11Z'/%3E%3C/svg%3E");
}

.social-link.instagram {
  --contact-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M10 4h12c3.3 0 6 2.7 6 6v12c0 3.3-2.7 6-6 6H10c-3.3 0-6-2.7-6-6V10c0-3.3 2.7-6 6-6Zm0 3a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3h12a3 3 0 0 0 3-3V10a3 3 0 0 0-3-3H10Zm6 3.5a5.5 5.5 0 1 1 0 11 5.5 5.5 0 0 1 0-11Zm0 3a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5Zm6-4.2a1.2 1.2 0 1 1 0 2.4 1.2 1.2 0 0 1 0-2.4Z'/%3E%3C/svg%3E");
}

.social-link.linkedin {
  --contact-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M8.3 11.3a2.3 2.3 0 1 1 0-4.6 2.3 2.3 0 0 1 0 4.6ZM6.3 13h4v12h-4V13Zm6.3 0h3.8v1.7h.1c.5-1 1.8-2.1 3.8-2.1 4 0 4.7 2.6 4.7 6v6.4h-4v-5.7c0-1.4 0-3.1-1.9-3.1s-2.2 1.5-2.2 3v5.8h-4V13Z'/%3E%3C/svg%3E");
}

.contact-socials,
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px 10px 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(194, 216, 241, 0.82);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(12, 53, 105, 0.06);
}

.footer-contact-link {
  display: block;
  margin: 10px 0;
}

.footer-trust-line {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 800;
}

.site-footer .footer-contact-link,
.site-footer .social-link {
  color: rgba(255, 255, 255, 0.86);
}

.site-footer .social-link {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.site-footer .footer-contact-link::before,
.site-footer .social-link::before {
  background: #fff;
}

.msme-line {
  margin-top: 16px;
  color: var(--blue-deep);
  font-weight: 850;
}

.site-footer {
  background: #0f1724;
  color: #fff;
  padding: 58px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr;
  gap: 36px;
}

.footer-brand img {
  border-color: rgba(255, 255, 255, 0.16);
}

.footer-brand small,
.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer p {
  max-width: 410px;
  margin-top: 18px;
}

.site-footer h2 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 17px;
}

.site-footer a:not(.brand) {
  display: block;
  margin: 9px 0;
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background: var(--green);
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 20px 34px rgba(15, 157, 120, 0.26);
  font-size: 15px;
  font-weight: 950;
}

[data-reveal] {
  opacity: 1;
  transform: translateY(18px);
  transition: transform 600ms ease;
}

[data-reveal].is-visible {
  transform: translateY(0);
}

@media (max-width: 980px) {
  .header-cta {
    display: none;
  }

  .nav-toggle {
    position: fixed;
    top: 17px;
    right: 20px;
    z-index: 3;
    display: inline-flex;
  }

  .header-inner {
    position: relative;
    padding-right: 58px;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    display: grid;
    gap: 6px;
    padding: 18px 20px 24px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    transition: transform 220ms ease;
  }

  body.nav-open .site-nav {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 13px 14px;
  }

  h1,
  .page-hero h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .hero {
    min-height: 560px;
    padding: 82px 0 56px;
  }

  .image-backed::before {
    background-position: right -120px center;
    background-size: 450px auto;
  }

  .trust-grid,
  .card-grid.four,
  .who-for-grid,
  .feature-grid,
  .process-list,
  .pricing-layout,
  .usp-grid,
  .service-detail-grid,
  .split-section,
  .terms-layout,
  .pricing-cards,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .wide-card,
  .detail-panel.primary-panel {
    grid-column: auto;
    grid-row: auto;
  }

  .price-pair,
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .container {
    width: calc(100% - 28px);
  }

  .header-inner {
    min-height: 70px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand small {
    font-size: 12px;
  }

  .site-nav {
    top: 70px;
  }

  .nav-toggle {
    top: 14px;
    right: 14px;
  }

  .hero {
    min-height: 520px;
    padding: 56px 0 36px;
  }

  h1,
  .page-hero h1 {
    font-size: 32px;
    max-width: 100%;
  }

  h2 {
    font-size: 26px;
    max-width: 100%;
  }

  h3 {
    font-size: 20px;
  }

  .hero-copy,
  .page-hero p:last-child,
  .section-heading p:last-child {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero-note {
    width: 100%;
  }

  .section,
  .page-hero {
    padding: 62px 0;
  }

  .trust-grid {
    padding: 18px 0;
  }

  .service-card,
  .feature-card,
  .detail-panel,
  .pricing-card,
  .founder-panel,
  .team-card,
  .contact-form {
    padding: 22px;
  }

  .page-hero .container,
  .contact-grid > * {
    min-width: 0;
  }

  .feature-card,
  .pricing-card {
    min-height: auto;
  }

  .price-pair,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .founder-panel {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Premium visual refresh */
:root {
  --cyan: #14b8d4;
  --navy: #071b38;
  --mist: #eef7ff;
  --shadow-strong: 0 26px 70px rgba(12, 53, 105, 0.13);
}

body {
  background:
    linear-gradient(180deg, rgba(238, 247, 255, 0.68) 0, rgba(255, 255, 255, 0) 420px),
    #fff;
  overflow-x: hidden;
}

.site-header {
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(194, 216, 241, 0.72);
  box-shadow: 0 10px 36px rgba(13, 71, 139, 0.07);
}

.header-inner {
  min-height: 82px;
}

.brand {
  gap: 14px;
}

.brand img {
  width: 62px;
  height: 58px;
  border-color: rgba(18, 102, 241, 0.2);
  box-shadow: 0 12px 30px rgba(18, 102, 241, 0.12);
}

.brand strong {
  font-size: 20px;
  letter-spacing: 0;
}

.brand small {
  color: var(--blue-deep);
  font-size: 13px;
}

.site-nav {
  padding: 7px;
  background: rgba(245, 249, 255, 0.86);
  border: 1px solid rgba(219, 231, 245, 0.98);
  border-radius: 8px;
}

.site-nav a {
  position: relative;
  padding: 10px 15px;
}

.site-nav a.active {
  background: #fff;
  box-shadow: 0 9px 22px rgba(18, 102, 241, 0.09);
}

.header-cta {
  background: linear-gradient(135deg, var(--green), #12b38b);
  box-shadow: 0 16px 34px rgba(15, 157, 120, 0.24);
}

.hero,
.page-hero {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.97) 0 52%, rgba(238, 247, 255, 0.94) 52% 100%),
    linear-gradient(180deg, #fff, var(--mist));
}

.hero {
  min-height: 700px;
  padding: 94px 0 132px;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
  width: 45%;
  background:
    linear-gradient(135deg, rgba(18, 102, 241, 0.14), rgba(20, 184, 212, 0.1)),
    repeating-linear-gradient(135deg, rgba(18, 102, 241, 0.08) 0 1px, transparent 1px 18px);
  clip-path: polygon(17% 0, 100% 0, 100% 100%, 0 100%);
}

.image-backed::before {
  background-position: right 8% center;
  background-size: 620px auto;
  opacity: 0.11;
  filter: saturate(1.05);
}

.hero-inner {
  max-width: 820px;
}

.hero-brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding: 8px 14px 8px 8px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(194, 216, 241, 0.88);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(12, 53, 105, 0.09);
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 900;
}

.hero-brand-mark img {
  width: 48px;
  height: 42px;
  object-fit: contain;
  border-radius: 8px;
}

.eyebrow {
  color: var(--blue-deep);
}

h1 {
  font-size: 62px;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 720px;
}

.btn {
  position: relative;
  overflow: hidden;
}

.btn.primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  box-shadow: 0 18px 38px rgba(18, 102, 241, 0.24);
}

.btn.primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: translateX(-120%);
  transition: transform 420ms ease;
}

.btn.primary:hover::after {
  transform: translateX(120%);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.92);
}

.hero-note {
  background: rgba(237, 245, 255, 0.94);
  box-shadow: 0 12px 28px rgba(18, 102, 241, 0.08);
  max-width: 100%;
  overflow-wrap: anywhere;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(12, 53, 105, 0.07);
  font-size: 14px;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.trust-band {
  position: relative;
  z-index: 5;
  margin-top: -58px;
  background: transparent;
  border: 0;
}

.trust-grid {
  padding: 0 0 42px;
}

.trust-grid div,
.service-card,
.feature-card,
.detail-panel,
.pricing-card,
.team-card,
.mission-grid article,
.process-list article,
.usp-grid article,
.contact-methods a,
.contact-form,
.founder-panel {
  position: relative;
  overflow: hidden;
  border-color: rgba(194, 216, 241, 0.82);
  box-shadow: var(--shadow-strong);
}

.trust-grid div::before,
.service-card::before,
.feature-card::before,
.detail-panel::before,
.pricing-card::before,
.team-card::before,
.mission-grid article::before,
.process-list article::before,
.usp-grid article::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--green));
}

.section {
  position: relative;
}

.soft-section {
  background:
    linear-gradient(180deg, rgba(245, 249, 255, 0.98), rgba(238, 247, 255, 0.78)),
    repeating-linear-gradient(90deg, rgba(18, 102, 241, 0.05) 0 1px, transparent 1px 44px);
}

.section-heading {
  position: relative;
  padding-left: 22px;
}

.section-heading::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 5px;
  height: 72px;
  background: linear-gradient(180deg, var(--blue), var(--cyan));
  border-radius: 8px;
}

.card-icon,
.person-initial {
  color: #fff;
  background:
    linear-gradient(135deg, var(--blue), var(--cyan));
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 14px 30px rgba(18, 102, 241, 0.18);
}

.service-card,
.feature-card,
.pricing-card {
  background:
    linear-gradient(180deg, #fff 0, #fff 68%, rgba(238, 247, 255, 0.72) 100%);
}

.feature-card.highlight {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(237, 245, 255, 0.95)),
    linear-gradient(135deg, rgba(18, 102, 241, 0.12), transparent);
}

.feature-label {
  color: #04745a;
  background: rgba(231, 247, 242, 0.98);
}

.process-list article span {
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 8px;
}

.pricing-snapshot {
  background:
    linear-gradient(135deg, #083c8f, #0a6fad 52%, #0f9d78),
    var(--blue-deep);
  overflow: hidden;
}

.pricing-snapshot::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 22px);
  opacity: 0.45;
}

.pricing-snapshot .container {
  position: relative;
  z-index: 1;
}

.price-pair article {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}

.usp-grid article {
  border-left: 0;
}

.usp-grid article::before {
  height: 100%;
  width: 5px;
}

.cta-section {
  background:
    linear-gradient(120deg, rgba(237, 245, 255, 0.96), rgba(255, 255, 255, 0.98) 52%, rgba(231, 247, 242, 0.82)),
    #fff;
}

.cta-inner {
  padding: 46px 34px;
  border: 1px solid rgba(194, 216, 241, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-strong);
}

.page-hero {
  padding: 108px 0 92px;
  min-height: 360px;
}

.pricing-card.featured {
  transform: translateY(-12px);
}

.contact-form {
  background:
    linear-gradient(180deg, #fff, rgba(238, 247, 255, 0.72));
}

.site-footer {
  background:
    linear-gradient(135deg, #071b38, #083c60 58%, #065e65);
}

.footer-brand img {
  width: 64px;
  height: 60px;
}

.floating-whatsapp {
  background: linear-gradient(135deg, var(--green), #12b38b);
  box-shadow: 0 22px 42px rgba(15, 157, 120, 0.28);
}

@media (max-width: 980px) {
  .header-inner {
    min-height: 76px;
  }

  .brand img {
    width: 56px;
    height: 52px;
  }

  .site-nav {
    padding: 18px 20px 24px;
    border-radius: 0;
  }

  .hero {
    min-height: 640px;
    padding: 76px 0 100px;
  }

  .hero::after,
  .page-hero::after {
    width: 62%;
    opacity: 0.82;
  }

  h1,
  .page-hero h1 {
    font-size: 44px;
  }

  .trust-band {
    margin-top: -42px;
  }

  .pricing-card.featured {
    transform: none;
  }
}

@media (max-width: 640px) {
  .page-hero .container,
  .contact-grid > * {
    min-width: 0;
  }

  .brand img {
    width: 48px;
    height: 46px;
  }

  .hero-content,
  .contact-info {
    max-width: 330px;
  }

  .page-hero .container {
    max-width: 300px;
  }

  .hero-content {
    max-width: 300px;
  }

  .brand strong {
    font-size: 17px;
  }

  .hero {
    min-height: 600px;
    padding: 58px 0 86px;
  }

  .hero-brand-mark {
    max-width: 100%;
  }

  .hero-brand-mark span {
    overflow-wrap: anywhere;
  }

  h1,
  .page-hero h1 {
    font-size: 30px;
    max-width: 100%;
  }

  .page-hero h1 {
    font-size: 26px;
    line-height: 1.16;
  }

  .page-hero p:last-child {
    font-size: 15px;
  }

  .hero-copy {
    font-size: 15px;
  }

  .image-backed::before {
    background-size: 430px auto;
    background-position: right -180px center;
    opacity: 0.1;
  }

  .hero::after,
  .page-hero::after {
    width: 86%;
  }

  .hero-proof {
    display: grid;
  }

  .hero-note {
    display: block;
  }

  .hero-proof span {
    width: 100%;
  }

  .trust-band {
    margin-top: -32px;
  }

  .section-heading {
    padding-left: 16px;
  }

  .section-heading::before {
    height: 58px;
  }

  .contact-info > p,
  .contact-methods strong,
  .contact-form h2 {
    max-width: 100%;
  }

  .contact-info h2,
  .contact-form h2 {
    font-size: 24px;
  }

  .contact-methods strong {
    font-size: 18px;
    line-height: 1.35;
  }

  .cta-inner {
    padding: 34px 20px;
  }
}

/* Stylish motion, icons, and tighter premium spacing */
body {
  font-family: "Aptos", "Segoe UI Variable Text", Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

h1,
h2,
h3,
.brand strong {
  font-family: "Aptos Display", "Segoe UI Variable Display", "Space Grotesk", Manrope, ui-sans-serif, system-ui, sans-serif;
}

.intro-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(18, 102, 241, 0.16), transparent 32%),
    linear-gradient(135deg, #f8fcff, #eef7ff 48%, #ffffff);
  animation: intro-exit 620ms ease 1.45s forwards;
}

.intro-loader::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(18, 102, 241, 0.08) 0 1px, transparent 1px 22px),
    linear-gradient(90deg, transparent, rgba(20, 184, 212, 0.08), transparent);
}

.intro-card {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(330px, calc(100% - 48px));
  padding: 30px 24px 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(194, 216, 241, 0.95);
  border-radius: 8px;
  box-shadow: 0 36px 90px rgba(12, 53, 105, 0.18);
  transform: translateY(16px) scale(0.96);
  opacity: 0;
  animation: intro-card-in 900ms cubic-bezier(0.2, 0.8, 0.2, 1) 120ms forwards;
}

.intro-card img {
  position: relative;
  z-index: 2;
  width: 118px;
  height: 96px;
  object-fit: contain;
  margin-bottom: 18px;
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(18, 102, 241, 0.15);
}

.intro-card strong {
  font-family: "Aptos Display", "Segoe UI Variable Display", "Space Grotesk", Manrope, sans-serif;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.12;
  text-align: center;
}

.intro-card small {
  margin-top: 8px;
  color: var(--blue-deep);
  font-weight: 900;
  text-align: center;
}

.intro-ring {
  position: absolute;
  top: 22px;
  width: 138px;
  height: 138px;
  border: 1px solid rgba(18, 102, 241, 0.18);
  border-radius: 50%;
  animation: intro-ring-spin 1.75s linear infinite;
}

.intro-ring::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border: 3px solid transparent;
  border-top-color: var(--blue);
  border-right-color: var(--cyan);
}

body.intro-complete .intro-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 360ms ease, visibility 360ms ease;
}

@keyframes intro-card-in {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.94);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes intro-ring-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes intro-exit {
  100% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

.header-cta::before,
.btn[href*="wa.me"]::before,
.site-footer a[href*="wa.me"]::before,
.floating-whatsapp::before {
  content: "";
  display: inline-block;
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  margin-right: 8px;
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23fff' d='M16.04 4.2c-6.35 0-11.5 5.05-11.5 11.29 0 2.13.61 4.12 1.67 5.82L4.5 27.8l6.67-1.66a11.68 11.68 0 0 0 4.87 1.06c6.35 0 11.5-5.05 11.5-11.29S22.39 4.2 16.04 4.2Zm0 20.97c-1.58 0-3.08-.37-4.41-1.04l-.32-.16-3.95.98 1.02-3.76-.2-.33a9.43 9.43 0 0 1-1.5-5.08c0-5.09 4.2-9.23 9.36-9.23s9.36 4.14 9.36 9.23-4.2 9.39-9.36 9.39Zm5.15-6.86c-.28-.14-1.65-.8-1.9-.89-.25-.09-.44-.14-.63.14-.18.27-.72.89-.88 1.07-.16.18-.33.2-.61.07-.28-.14-1.18-.43-2.24-1.36-.83-.73-1.39-1.63-1.55-1.9-.16-.27-.02-.42.12-.56.13-.13.28-.33.42-.49.14-.16.18-.27.28-.45.09-.18.05-.34-.02-.48-.07-.14-.63-1.49-.86-2.04-.23-.53-.46-.46-.63-.47h-.54c-.18 0-.48.07-.73.34-.25.27-.95.91-.95 2.23s.98 2.59 1.11 2.77c.14.18 1.93 2.9 4.68 4.06.65.28 1.16.45 1.56.58.66.2 1.25.17 1.72.1.52-.08 1.65-.66 1.88-1.3.23-.64.23-1.18.16-1.3-.07-.12-.25-.19-.53-.33Z'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: -3px;
}

.btn.secondary[href*="wa.me"]::before,
.site-footer a[href*="wa.me"]::before {
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%230f9d78' d='M16.04 4.2c-6.35 0-11.5 5.05-11.5 11.29 0 2.13.61 4.12 1.67 5.82L4.5 27.8l6.67-1.66a11.68 11.68 0 0 0 4.87 1.06c6.35 0 11.5-5.05 11.5-11.29S22.39 4.2 16.04 4.2Zm0 20.97c-1.58 0-3.08-.37-4.41-1.04l-.32-.16-3.95.98 1.02-3.76-.2-.33a9.43 9.43 0 0 1-1.5-5.08c0-5.09 4.2-9.23 9.36-9.23s9.36 4.14 9.36 9.23-4.2 9.39-9.36 9.39Zm5.15-6.86c-.28-.14-1.65-.8-1.9-.89-.25-.09-.44-.14-.63.14-.18.27-.72.89-.88 1.07-.16.18-.33.2-.61.07-.28-.14-1.18-.43-2.24-1.36-.83-.73-1.39-1.63-1.55-1.9-.16-.27-.02-.42.12-.56.13-.13.28-.33.42-.49.14-.16.18-.27.28-.45.09-.18.05-.34-.02-.48-.07-.14-.63-1.49-.86-2.04-.23-.53-.46-.46-.63-.47h-.54c-.18 0-.48.07-.73.34-.25.27-.95.91-.95 2.23s.98 2.59 1.11 2.77c.14.18 1.93 2.9 4.68 4.06.65.28 1.16.45 1.56.58.66.2 1.25.17 1.72.1.52-.08 1.65-.66 1.88-1.3.23-.64.23-1.18.16-1.3-.07-.12-.25-.19-.53-.33Z'/%3E%3C/svg%3E");
}

.floating-whatsapp {
  font-size: 0;
}

.floating-whatsapp::before {
  width: 30px;
  height: 30px;
  margin: 0;
}

.hero {
  min-height: 640px;
  padding: 72px 0 96px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(330px, 0.78fr);
  gap: 44px;
  align-items: center;
  max-width: none;
}

.hero-content {
  max-width: 790px;
}

.hero-content h1 {
  font-size: 58px;
}

.hero-visual {
  position: relative;
  min-height: 440px;
}

.visual-logo-card,
.demo-window,
.visual-stat {
  position: absolute;
  border: 1px solid rgba(194, 216, 241, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(18px);
}

.visual-logo-card {
  top: 18px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 260px;
  padding: 14px;
}

.visual-logo-card img {
  width: 64px;
  height: 58px;
  object-fit: contain;
  border-radius: 8px;
}

.visual-logo-card span,
.visual-stat span {
  color: var(--muted);
  font-weight: 800;
}

.demo-window {
  top: 112px;
  right: 64px;
  width: min(360px, 100%);
  padding: 28px;
}

.window-dots {
  display: flex;
  gap: 7px;
  margin-bottom: 22px;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line);
}

.window-dots span:first-child {
  background: var(--blue);
}

.window-dots span:nth-child(2) {
  background: var(--cyan);
}

.window-dots span:last-child {
  background: var(--green);
}

.demo-window h2 {
  font-size: 28px;
}

.demo-window p {
  margin-top: 10px;
}

.demo-lines {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.demo-lines span {
  display: block;
  height: 10px;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(18, 102, 241, 0.18), rgba(20, 184, 212, 0.08));
}

.demo-lines span:nth-child(2) {
  width: 78%;
}

.demo-lines span:nth-child(3) {
  width: 55%;
}

.visual-stat {
  display: grid;
  min-width: 140px;
  padding: 16px 18px;
}

.visual-stat strong {
  color: var(--blue-deep);
  font-family: "Aptos Display", "Segoe UI Variable Display", "Space Grotesk", Manrope, sans-serif;
  font-size: 26px;
  line-height: 1;
}

.stat-one {
  left: 0;
  bottom: 54px;
}

.stat-two {
  right: 0;
  bottom: 12px;
}

.section {
  padding: 76px 0;
}

.page-hero {
  min-height: 320px;
  padding: 86px 0 76px;
}

.trust-grid {
  padding-bottom: 30px;
}

.service-card {
  min-height: 220px;
}

.audience-card {
  isolation: isolate;
}

.audience-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -40px;
  z-index: -1;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 102, 241, 0.13), transparent 66%);
}

.card-icon {
  width: 54px;
  height: 54px;
}

.card-icon::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background: #fff;
  -webkit-mask: var(--icon) center / contain no-repeat;
  mask: var(--icon) center / contain no-repeat;
}

.icon-school {
  --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M16 3 3 9l13 6 13-6-13-6Zm-8 10v7.8c0 1.1 3.6 4.2 8 4.2s8-3.1 8-4.2V13l-8 3.7L8 13Zm-3 2.1v7.4h2v-8.3l-2 .9Z'/%3E%3C/svg%3E");
}

.icon-gym {
  --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M6 10h3v12H6v-3H3v-6h3v-3Zm17 0h3v3h3v6h-3v3h-3V10ZM11 14h10v4H11v-4Z'/%3E%3C/svg%3E");
}

.icon-boutique {
  --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M9 10V8a7 7 0 0 1 14 0v2h3l-1.4 18H7.4L6 10h3Zm3 0h8V8a4 4 0 0 0-8 0v2Zm-1 6a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm10 0a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z'/%3E%3C/svg%3E");
}

.icon-hostel {
  --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M5 7h4v10h18a3 3 0 0 1 3 3v7h-4v-4H9v4H5V7Zm6 5a4 4 0 1 1 8 0 4 4 0 0 1-8 0Zm9 1h6v4h-6v-4Z'/%3E%3C/svg%3E");
}

.icon-more {
  --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M6 6h8v8H6V6Zm12 0h8v8h-8V6ZM6 18h8v8H6v-8Zm15-1h2v5h5v2h-5v5h-2v-5h-5v-2h5v-5Z'/%3E%3C/svg%3E");
}

.school-card .card-icon {
  background: linear-gradient(135deg, #1266f1, #14b8d4);
}

.gym-card .card-icon {
  background: linear-gradient(135deg, #0f9d78, #14b8d4);
}

.boutique-card .card-icon {
  background: linear-gradient(135deg, #1266f1, #6ea8ff);
}

.hostel-card .card-icon {
  background: linear-gradient(135deg, #071b38, #1266f1);
}

.more-card .card-icon {
  background: linear-gradient(135deg, #0a6fad, #0f9d78);
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-content h1 {
    font-size: 44px;
  }

  .hero-visual {
    min-height: 310px;
  }

  .visual-logo-card {
    top: 0;
    left: 0;
    right: auto;
  }

  .demo-window {
    top: 78px;
    right: 0;
  }

  .stat-one {
    left: 0;
    bottom: 0;
  }

  .stat-two {
    right: 18px;
    bottom: 32px;
  }
}

@media (max-width: 640px) {
  .intro-card {
    padding: 26px 20px 24px;
  }

  .intro-card img {
    width: 96px;
    height: 80px;
  }

  .hero {
    min-height: auto;
    padding: 46px 0 66px;
  }

  .hero-content h1 {
    font-size: 35px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .visual-logo-card,
  .demo-window,
  .visual-stat {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    margin-top: 12px;
  }

  .demo-window {
    padding: 22px;
  }

  .demo-window h2 {
    font-size: 24px;
  }

  .section {
    padding: 58px 0;
  }

  .page-hero {
    min-height: 280px;
    padding: 62px 0;
  }

  .service-card {
    min-height: 205px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro-loader,
  .intro-card,
  .intro-ring {
    animation: none !important;
  }

  .intro-loader {
    display: none;
  }
}

/* Pricing and experience counters */
.pricing-snapshot-up {
  margin-top: -12px;
  padding: 66px 0;
}

.pricing-page-section {
  padding-top: 52px;
}

.animated-price {
  display: inline-block;
  min-width: 7ch;
  font-variant-numeric: tabular-nums;
}

.experience-section {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.98), rgba(238, 247, 255, 0.9) 52%, rgba(231, 247, 242, 0.78)),
    repeating-linear-gradient(135deg, rgba(18, 102, 241, 0.05) 0 1px, transparent 1px 24px);
  border-top: 1px solid rgba(194, 216, 241, 0.68);
  border-bottom: 1px solid rgba(194, 216, 241, 0.68);
}

.experience-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
}

.experience-layout .section-heading {
  margin-bottom: 0;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.experience-grid article {
  position: relative;
  min-height: 178px;
  padding: 26px 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(194, 216, 241, 0.82);
  border-radius: 8px;
  box-shadow: var(--shadow-strong);
}

.experience-grid article::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--green));
}

.experience-grid article::after {
  content: "";
  position: absolute;
  right: -32px;
  bottom: -44px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 102, 241, 0.14), transparent 66%);
}

.experience-grid strong {
  display: block;
  color: var(--blue-deep);
  font-family: "Aptos Display", "Segoe UI Variable Display", ui-sans-serif, system-ui, sans-serif;
  font-size: 48px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.experience-grid p {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  color: var(--ink);
  font-weight: 850;
}

.about-experience {
  padding-top: 68px;
  padding-bottom: 68px;
}

@media (max-width: 980px) {
  .experience-layout,
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .experience-layout .section-heading {
    margin-bottom: 10px;
  }
}

@media (max-width: 640px) {
  .pricing-snapshot-up {
    margin-top: 0;
    padding: 58px 0;
  }

  .pricing-page-section {
    padding-top: 34px;
  }

  .experience-grid strong {
    font-size: 42px;
  }
}

/* Focused service polish and trust badge */
.top-corner-badge {
  position: fixed;
  top: 96px;
  right: 22px;
  z-index: 92;
  display: grid;
  gap: 2px;
  max-width: 232px;
  padding: 10px 12px 10px 40px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(194, 216, 241, 0.92);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(12, 53, 105, 0.12);
  backdrop-filter: blur(16px);
}

.top-corner-badge::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 50%;
  width: 17px;
  height: 17px;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--green), #18c295);
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='m13.3 23.3-7-7 2.1-2.1 4.9 4.9 10.3-10.3 2.1 2.1-12.4 12.4Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='m13.3 23.3-7-7 2.1-2.1 4.9 4.9 10.3-10.3 2.1 2.1-12.4 12.4Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.top-corner-badge span {
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

.top-corner-badge small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
}

#contact-section {
  scroll-margin-top: 118px;
}

.feature-card,
.detail-panel {
  display: flex;
  flex-direction: column;
}

.service-detail-grid > *,
.feature-grid > *,
.card-grid > *,
.who-for-grid > *,
.pricing-cards > *,
.pricing-layout > *,
.contact-grid > *,
.experience-grid > *,
.footer-grid > * {
  min-width: 0;
}

.service-brand-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-bottom: 16px;
  padding: 7px 10px 7px 7px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(194, 216, 241, 0.9);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(12, 53, 105, 0.08);
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
}

.service-brand-row img {
  width: 32px;
  height: 28px;
  object-fit: contain;
  padding: 2px;
  background: #fff;
  border: 1px solid rgba(194, 216, 241, 0.88);
  border-radius: 6px;
}

.service-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
}

.subtle-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 9px 12px;
  color: var(--blue-deep);
  background: rgba(237, 245, 255, 0.92);
  border: 1px solid rgba(194, 216, 241, 0.96);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(12, 53, 105, 0.06);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.2;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.subtle-contact-btn::before {
  content: "";
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M6 7h20a3 3 0 0 1 3 3v12a3 3 0 0 1-3 3H11l-6 4V10a3 3 0 0 1 3-3Zm2 6v2h11v-2H8Zm0 5v2h16v-2H8Zm13-5v2h3v-2h-3Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M6 7h20a3 3 0 0 1 3 3v12a3 3 0 0 1-3 3H11l-6 4V10a3 3 0 0 1 3-3Zm2 6v2h11v-2H8Zm0 5v2h16v-2H8Zm13-5v2h3v-2h-3Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.subtle-contact-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(18, 102, 241, 0.34);
  background: rgba(255, 255, 255, 0.98);
}

.panel-contact-btn {
  margin-top: 22px;
  align-self: flex-start;
}

/* Richer logo-led intro */
.intro-loader {
  background:
    radial-gradient(circle at 50% 36%, rgba(18, 102, 241, 0.2), transparent 26%),
    radial-gradient(circle at 50% 50%, rgba(20, 184, 212, 0.1), transparent 38%),
    linear-gradient(135deg, #f8fcff, #eef7ff 48%, #ffffff);
}

.intro-loader::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, 0.56) 50%, transparent 58%);
  transform: translateX(-120%);
  animation: intro-sweep 1.85s cubic-bezier(0.2, 0.8, 0.2, 1) 120ms both;
}

.intro-card {
  overflow: visible;
  isolation: isolate;
}

.intro-card::before {
  content: "";
  position: absolute;
  inset: -16px;
  z-index: -2;
  border-radius: 18px;
  background: radial-gradient(circle at 50% 45%, rgba(18, 102, 241, 0.22), rgba(20, 184, 212, 0.08) 42%, transparent 72%);
  filter: blur(18px);
  animation: intro-halo 1.85s ease-in-out infinite;
}

.intro-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(18, 102, 241, 0.14), rgba(20, 184, 212, 0.08), rgba(15, 157, 120, 0.06));
}

.intro-card img {
  animation: intro-logo-float 1.35s ease-in-out infinite alternate, intro-logo-pulse 1.9s ease-in-out infinite;
  transform-origin: center;
}

.intro-card strong,
.intro-card small {
  animation: intro-copy-rise 820ms cubic-bezier(0.2, 0.8, 0.2, 1) 220ms both;
}

.intro-card small {
  animation-delay: 300ms;
}

.intro-ring {
  top: 14px;
  width: 152px;
  height: 152px;
  border-color: rgba(18, 102, 241, 0.12);
}

.intro-ring::after {
  content: "";
  position: absolute;
  inset: 15px;
  border: 1px dashed rgba(20, 184, 212, 0.22);
  border-radius: inherit;
  animation: intro-ring-counter 3.2s linear infinite;
}

@keyframes intro-logo-float {
  0% {
    transform: translateY(0) scale(1);
  }

  100% {
    transform: translateY(-6px) scale(1.03);
  }
}

@keyframes intro-logo-pulse {
  0%,
  100% {
    box-shadow: 0 16px 40px rgba(18, 102, 241, 0.15);
  }

  50% {
    box-shadow: 0 22px 54px rgba(20, 184, 212, 0.24);
  }
}

@keyframes intro-copy-rise {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes intro-ring-counter {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes intro-halo {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.98);
  }

  50% {
    opacity: 1;
    transform: scale(1.03);
  }
}

@keyframes intro-sweep {
  0% {
    transform: translateX(-120%);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}

@media (max-width: 980px) {
  .top-corner-badge {
    top: 84px;
    right: 16px;
    max-width: min(206px, calc(100vw - 32px));
  }
}

@media (max-width: 640px) {
  .top-corner-badge {
    display: none;
  }

  .service-brand-row {
    margin-bottom: 14px;
  }

  .service-card-actions {
    gap: 8px;
  }

  .subtle-contact-btn {
    width: 100%;
    justify-content: center;
  }

  .service-detail-grid,
  .service-extension .container {
    max-width: 336px;
    margin-inline: auto;
  }

  .detail-panel {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro-loader::after,
  .intro-card::before,
  .intro-card::after,
  .intro-card img,
  .intro-card strong,
  .intro-card small,
  .intro-ring::after {
    animation: none !important;
  }
}
