:root {
  --ink: #0b204c;
  --blue: #0866ed;
  --blue-deep: #064db8;
  --muted: #53637f;
  --surface: #f5f8fd;
  --line: #dfe7f3;
  --green: #087c5c;
  --mint: #e6f7ef;
  --display: Manrope, sans-serif;
  --body: "DM Sans", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
}
a {
  transition:
    color 0.16s,
    background 0.16s;
}
a:hover {
  color: var(--blue-deep);
}
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 5px;
}
img {
  height: auto;
  max-width: 100%;
}
button,
input,
textarea,
select {
  font: inherit;
}
button {
  cursor: pointer;
}
h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}
h1,
h2,
h3 {
  color: var(--ink);
}
h1 {
  font-size: clamp(40px, 4.8vw, 68px);
}
h2 {
  font-size: clamp(30px, 3.1vw, 44px);
}
h3 {
  font-size: 19px;
  letter-spacing: -0.025em;
}
p {
  color: var(--muted);
}
.wp-site-blocks {
  padding: 0;
}
.wp-site-blocks > * {
  margin-block-start: 0;
}
.wp-block-template-part {
  margin: 0;
}
.wp-block-post-content > *:first-child {
  margin-top: 0;
}
.content-shell {
  width: min(1200px, calc(100% - 64px));
  margin-inline: auto;
}
.content-shell > * {
  max-width: none !important;
}
.site-header {
  width: min(1320px, calc(100% - 64px));
  margin: auto;
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.site-header > * {
  margin: 0;
}
.brand {
  font: 800 31px/1 var(--display);
  letter-spacing: -1.4px;
  flex-shrink: 0;
}
.brand a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--ink) !important;
}
.brand a:before {
  content: "";
  display: inline-block;
  width: 39px;
  height: 45px;
  background: center/contain no-repeat url("../images/brand-mark.svg");
}
.site-header .main-navigation {
  margin-left: auto;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.wp-block-navigation__container {
  gap: 25px !important;
}
.wp-block-navigation a {
  text-decoration: none;
}
.wp-block-navigation a:hover {
  color: var(--blue);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}
.header-actions > * {
  margin: 0;
}
.login-link {
  font-size: 14px;
  font-weight: 600;
}
.login-link a {
  text-decoration: none;
  color: var(--ink);
}
.wp-block-buttons {
  gap: 12px;
}
.wp-block-button__link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 16px 23px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  min-height: 52px;
  background: var(--blue);
  color: white;
  box-shadow: 0 4px 8px #0866ed0a;
}
.wp-block-button__link:hover {
  background: var(--blue-deep);
  color: white;
}
.is-style-outline .wp-block-button__link {
  background: transparent;
  border: 1px solid #bdcce2;
  color: var(--ink);
  padding: 16px 23px;
}
.is-style-outline .wp-block-button__link:hover {
  background: #eaf2ff;
  border-color: var(--blue);
}
.header-actions .wp-block-button__link {
  padding: 13px 19px;
  min-height: 46px;
  font-size: 13px;
}
.hero-band {
  background: linear-gradient(110deg, #fff 35%, #f1f7ff 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero-layout {
  width: min(1320px, calc(100% - 64px));
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  align-items: center;
  gap: 38px;
  padding: 65px 0 90px;
  min-height: 645px;
}
.hero-layout > * {
  margin: 0;
}
.eyebrow {
  font-size: 11px !important;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: var(--blue);
  margin: 0 0 22px !important;
  line-height: 1.7;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.07em;
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
  box-shadow: 0 0 0 4px #e6f7ef;
}
.hero-copy h1 {
  margin: 0 0 25px;
  line-height: 1.08;
  letter-spacing: -0.05em;
}
.text-blue {
  color: var(--blue);
}
.hero-description {
  font-size: 17px;
  max-width: 440px;
  line-height: 1.7;
  margin: 0 0 29px;
}
.hero-copy .wp-block-buttons {
  margin: 0;
}
.hero-trust {
  font-size: 11px;
  margin-top: 24px !important;
  color: #566b8b;
  display: flex;
  gap: 9px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-trust span {
  color: #8294ae;
}
.hero-visual {
  position: relative;
  min-width: 0;
  padding: 35px 0 38px;
  margin-right: -65px;
}
.dashboard-preview {
  background: white;
  border: 1px solid #dfe8f6;
  border-radius: 12px;
  padding: 7px;
  box-shadow: 0 32px 65px -30px #123b7850;
  transform: perspective(1400px) rotateY(-5deg) rotateX(2deg);
  overflow: hidden;
}
.dashboard-preview > * {
  margin: 0;
}
.preview-toolbar {
  font-size: 10px;
  border-bottom: 1px solid #edf1f6;
  padding: 11px 15px;
  color: #5f6e85;
}
.browser-dots {
  font-size: 9px;
  letter-spacing: 3px;
  color: #b6c7df;
}
.dashboard-shot img {
  width: 100%;
  display: block;
}
.preview-caption {
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.025em;
  padding: 11px;
  margin: 0 !important;
  color: #68768d;
}
.floating-receipt {
  background: white;
  box-shadow: 0 14px 35px #163d7520;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 19px 26px;
  position: absolute;
  bottom: 0;
  left: 16px;
  min-width: 220px;
  transform: rotate(-3deg);
}
.floating-receipt > * {
  margin: 0;
}
.receipt-status {
  font-size: 11px;
  color: var(--green);
  font-weight: 700;
}
.receipt-time {
  font: 750 39px/1.4 var(--display);
  letter-spacing: -1px;
  color: var(--ink);
}
.receipt-time span {
  font-size: 19px;
  color: #8692a6;
}
.receipt-meta {
  font-size: 11px;
}
.receipt-meta span {
  padding: 0 5px;
}
.benefits-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  gap: 50px;
  padding: 37px 0;
  margin: 0 !important;
}
.benefit {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 !important;
}
.benefit .feature-icon {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  background: #edf4ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}
.benefit-copy {
  margin: 0 !important;
}
.benefit h3 {
  font-size: 14px;
  margin: 0 0 3px;
}
.benefit p {
  font-size: 12px;
  margin: 0;
}
.section {
  padding: 87px 0 0;
  margin: 0 !important;
}
.section > h2 {
  margin: 0;
  letter-spacing: -0.045em;
}
.section-intro {
  font-size: 16px;
  max-width: 620px;
  line-height: 1.7;
  margin: 20px 0 32px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 42px;
}
.step {
  margin: 0 !important;
  position: relative;
  padding: 0 28px 0 0;
}
.step:not(:last-child):after {
  content: "";
  position: absolute;
  top: 24px;
  left: 66px;
  right: 0;
  border-top: 1px dashed #cad7eb;
}
.step-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid #ccdff9;
  border-radius: 50%;
  background: #edf5ff;
  color: var(--blue);
  font: 700 18px var(--display);
  margin: 0 0 24px;
}
.step h3 {
  margin: 0 0 10px;
  font-size: 21px;
}
.step p:not(.step-number) {
  font-size: 15px;
  margin: 0;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.feature-card {
  margin: 0 !important;
  padding: 29px 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
}
.feature-card .feature-icon {
  width: 45px;
  height: 45px;
  border-radius: 11px;
  background: #edf4ff;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.feature-card:nth-child(3n + 2) .feature-icon {
  background: #eaf7f1;
  color: var(--green);
}
.feature-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
}
.feature-card p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}
.feature-card .text-link {
  margin-top: 24px;
  font-size: 12px;
  font-weight: 700;
}
.text-link a {
  text-decoration: none;
}
.text-link span {
  margin-left: 9px;
}
.whatsapp-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  padding: 65px 50px !important;
  margin-top: 85px !important;
  background: #f4faf8;
  border-radius: 18px;
}
.chat-art {
  padding: 0 14px;
}
.chat-window {
  border: 1px solid #dce9e2;
  border-radius: 18px;
  background: #edf3ee;
  box-shadow: 0 20px 50px -20px #16473625;
  overflow: hidden;
  padding: 0 18px 12px;
  max-width: 370px;
  margin: auto;
}
.chat-header {
  margin: 0 -18px 25px !important;
  padding: 16px 22px;
  background: white;
  color: var(--ink);
  font-weight: 800;
  font-size: 17px;
  border-bottom: 1px solid #e2e9e4;
}
.chat-header span {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: var(--muted);
}
.chat-bubble {
  font-size: 12px;
  line-height: 1.6;
  padding: 12px 15px;
  max-width: 85%;
  border-radius: 12px;
  margin-bottom: 17px;
  box-shadow: 0 2px 3px #09261104;
}
.chat-out {
  background: #d7f4d5;
  color: #17422c;
  margin-left: auto;
  border-top-right-radius: 2px;
  width: max-content;
}
.chat-in {
  background: white;
  color: var(--ink);
  border-top-left-radius: 2px;
  margin-left: 0;
}
.chat-in p {
  font-size: 11px;
  margin: 5px 0 0;
}
.chat-success {
  color: var(--green);
  font-weight: 700;
}
.chat-caption {
  font-size: 9px;
  text-align: center;
  color: #456551;
  margin: 20px 0 0;
}
.split-copy {
  margin: 0 !important;
}
.split-copy h2 {
  margin: 0;
}
.split-copy .section-intro {
  font-size: 15px;
  margin: 22px 0;
}
.check-line {
  font-size: 13px;
  color: #316751;
  margin: 10px 0 !important;
}
.split-copy .wp-block-buttons {
  margin-top: 28px;
}
.split-copy .wp-block-button__link {
  font-size: 12px;
  padding: 14px 18px;
}
.industry-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.industry-pill {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 14px 24px;
  border-radius: 7px;
  color: var(--ink);
  font-size: 14px;
  margin: 0 !important;
}
.asisya-faq {
  max-width: 850px;
  margin-top: 30px;
}
.wp-block-details {
  border-bottom: 1px solid var(--line);
  padding: 0;
  margin: 0 !important;
}
.wp-block-details summary {
  list-style: none;
  padding: 23px 45px 23px 0;
  position: relative;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  color: var(--ink);
}
.wp-block-details summary::-webkit-details-marker {
  display: none;
}
.wp-block-details summary:after {
  content: "+";
  position: absolute;
  right: 7px;
  top: 18px;
  font-size: 26px;
  font-weight: 400;
  color: var(--blue);
}
.wp-block-details[open] summary:after {
  content: "−";
}
.wp-block-details p {
  font-size: 15px;
  line-height: 1.8;
  padding: 0 35px 25px 0;
  margin: 0;
}
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 88px 0 65px !important;
  background: var(--blue);
  border-radius: 16px;
  padding: 45px 50px;
}
.cta-band h2 {
  color: white;
  font-size: 32px;
  margin: 0;
}
.cta-band .eyebrow {
  color: #ffffff;
  font-size: 10px !important;
  margin-bottom: 14px !important;
}
.cta-copy {
  margin: 0;
}
.cta-copy > p:not(.eyebrow) {
  font-size: 13px;
  color: #ffffff;
  margin: 16px 0 0;
}
.cta-band > .wp-block-buttons {
  flex-shrink: 0;
  margin: 0;
}
.cta-band .wp-block-button__link {
  background: white;
  color: var(--blue);
  font-size: 14px;
}
.cta-band .wp-block-button__link:hover {
  background: #e9f2ff;
}
.site-footer {
  width: min(1200px, calc(100% - 64px));
  margin: auto;
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 65px;
  padding: 0 0 50px;
}
.footer-main > * {
  margin: 0 !important;
}
.footer-brand .brand {
  font-size: 28px;
}
.footer-brand .brand a:before {
  width: 33px;
  height: 38px;
}
.brand-caption {
  font-size: 10px;
  margin: 9px 0 24px 42px !important;
}
.footer-description {
  font-size: 13px;
  line-height: 1.8;
}
.footer-column h3 {
  font-size: 13px;
  margin: 0 0 18px;
}
.footer-column p {
  font-size: 12px;
  margin: 11px 0;
}
.footer-column a {
  text-decoration: none;
  color: var(--muted);
}
.footer-column a:hover {
  color: var(--blue);
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 23px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.footer-bottom p {
  font-size: 10px;
  margin: 0 !important;
  color: #596b86;
}
.footer-bottom a {
  color: inherit;
  text-decoration: none;
}
.page-shell {
  padding-top: 56px;
}
.page-heading {
  max-width: 840px;
  margin-bottom: 48px;
}
.page-heading h1 {
  font-size: clamp(36px, 4.5vw, 62px);
  margin: 0;
  line-height: 1.15;
}
.page-intro {
  font-size: 19px;
  max-width: 690px;
  margin-top: 25px;
}
.page-shell .wp-block-post-content > .section {
  padding-top: 55px;
}
.page-shell .wp-block-post-content > .whatsapp-section {
  margin-top: 0 !important;
}
.page-shell > .wp-block-post-content {
  padding-bottom: 65px;
}
.page-shell .cta-band {
  margin-bottom: 0 !important;
}
.two-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.two-grid > * {
  margin: 0 !important;
}
.product-image {
  border: 1px solid var(--line);
  padding: 10px;
  border-radius: 15px;
  background: var(--surface);
  max-width: 960px;
}
.product-image figure {
  margin: 0;
}
.product-image img {
  display: block;
  border-radius: 10px;
}
.prose {
  max-width: 760px;
}
.prose p {
  font-size: 17px;
}
.prose h2 {
  font-size: 30px;
  margin-top: 42px;
}
.notice {
  font-size: 14px;
  padding: 18px 22px;
  border-left: 3px solid var(--blue);
  background: var(--surface);
  border-radius: 0 8px 8px 0;
}
.pricing-wrap {
  max-width: 690px;
  margin: auto;
}
.pricing-card {
  border: 1px solid #c7d9f5;
  border-radius: 18px;
  padding: 44px;
  background: linear-gradient(140deg, #f3f8ff, white);
}
.pricing-card h2 {
  font-size: 35px;
}
.pricing-list {
  line-height: 2.4;
  font-size: 16px;
}
.muted {
  font-size: 12px;
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: start;
}
.form-aside h2 {
  font-size: 30px;
}
.form-aside > p {
  font-size: 16px;
}
.check-list {
  line-height: 2.3;
}
.asisya-form {
  border: 1px solid var(--line);
  padding: 32px;
  border-radius: 15px;
  background: var(--surface);
  max-width: 720px;
}
.asisya-form label {
  display: block;
  color: var(--ink);
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 7px;
}
.asisya-form .field {
  margin-bottom: 20px;
}
.asisya-form input:not([type="checkbox"]),
.asisya-form select,
.asisya-form textarea {
  display: block;
  width: 100%;
  background: white;
  border: 1px solid #bdcbe0;
  border-radius: 7px;
  padding: 12px;
  color: var(--ink);
  font-size: 16px;
  min-height: 48px;
}
.asisya-form textarea {
  min-height: 130px;
  resize: vertical;
}
.asisya-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.asisya-form .consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--muted);
}
.consent-label input {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--blue);
}
.asisya-form button {
  border: 0;
}
.form-note {
  font-size: 12px !important;
}
.form-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-error {
  color: #a21d26;
  background: #fff0f0;
  border: 1px solid #f6c2c6;
  border-radius: 8px;
  padding: 14px;
  font-size: 14px;
}
.archive-shell {
  padding: 65px 0 85px;
}
.archive-shell h1 {
  max-width: 850px;
}
.archive-shell .wp-block-search {
  max-width: 600px;
  margin: 35px 0 50px;
}
.wp-block-search__inside-wrapper {
  gap: 12px;
}
.wp-block-search__input {
  border: 1px solid #bdcbe0;
  border-radius: 7px;
  padding: 12px;
  min-width: 0;
}
.wp-block-search__button {
  border: 0;
  background: var(--blue);
  color: white;
  border-radius: 7px;
  padding: 12px 22px;
  font-size: 14px;
}
.wp-block-search__label {
  font-size: 13px;
}
.post-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px;
  height: 100%;
  margin: 0;
}
.post-card h2 {
  font-size: 23px;
}
.post-card a {
  text-decoration: none;
}
.wp-block-post-terms,
.wp-block-post-date {
  font-size: 12px;
}
.post-card .wp-block-post-excerpt {
  font-size: 14px;
}
.wp-block-query-pagination {
  padding-top: 30px;
}
.article-shell {
  max-width: 800px;
  padding: 65px 0 85px;
}
.article-shell h1 {
  font-size: 46px;
}
.article-shell .wp-block-post-content h2 {
  font-size: 30px;
  margin-top: 45px;
}
.empty-page {
  padding: 90px 0 120px;
  max-width: 900px;
}
.empty-page .wp-block-search {
  max-width: 560px;
}
.asisya-access {
  max-width: 540px;
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.asisya-access label {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
}
.asisya-access input[type="text"],
.asisya-access input[type="password"] {
  width: 100%;
  padding: 12px;
  border: 1px solid #bdcbe0;
  border-radius: 7px;
}
.asisya-access input[type="submit"] {
  padding: 14px 24px;
  border: 0;
  background: var(--blue);
  color: white;
  border-radius: 7px;
}
.asisya-access a {
  font-size: 14px;
}
.wp-block-post-content:empty {
  display: none;
}
@media (min-width: 1500px) {
  .hero-visual {
    margin-right: -40px;
  }
  .hero-layout {
    gap: 65px;
  }
}
@media (max-width: 1100px) {
  .site-header {
    gap: 22px;
  }
  .wp-block-navigation__container {
    gap: 17px !important;
  }
  .header-actions {
    gap: 15px;
  }
  .login-link {
    display: none;
  }
  .hero-layout {
    gap: 20px;
    min-height: 570px;
  }
  .hero-copy h1 {
    font-size: 52px;
  }
  .hero-visual {
    margin-right: -35px;
  }
  .hero-description {
    font-size: 15px;
  }
  .hero-trust {
    font-size: 10px;
  }
  .benefits-strip {
    gap: 25px;
  }
  .whatsapp-section {
    gap: 30px;
    padding: 45px 30px !important;
  }
  .cta-band {
    padding: 35px;
  }
  .footer-main {
    gap: 30px;
  }
}
@media (max-width: 781px) {
  .content-shell,
  .site-footer {
    width: calc(100% - 40px);
  }
  .site-header {
    width: calc(100% - 40px);
    min-height: 78px;
    gap: 20px;
  }
  .site-header .brand {
    font-size: 27px;
  }
  .site-header .brand a:before {
    width: 33px;
    height: 38px;
  }
  .site-header .main-navigation {
    margin-left: auto;
  }
  .site-header .wp-block-navigation__responsive-container-open {
    display: flex !important;
    padding: 10px;
  }
  .site-header .wp-block-navigation__responsive-container:not(.is-menu-open) {
    display: none !important;
  }
  .site-header .wp-block-navigation__responsive-container.is-menu-open {
    padding: 28px;
  }
  .site-header .wp-block-navigation__responsive-container-content {
    padding-top: 65px;
    align-items: stretch;
  }
  .site-header .wp-block-navigation__container {
    align-items: stretch;
    width: 100%;
    gap: 0 !important;
  }
  .site-header .wp-block-navigation-item a {
    display: block;
    padding: 16px;
    font-size: 20px;
  }
  .site-header .wp-block-navigation__responsive-container-close {
    padding: 10px;
  }
  .header-actions .wp-block-button__link {
    font-size: 11px;
    padding: 10px 12px;
    min-height: 42px;
  }
  .header-actions {
    order: 0;
  }
  .site-header .main-navigation {
    order: 1;
  }
  .hero-layout {
    width: calc(100% - 40px);
    grid-template-columns: 1fr;
    padding: 42px 0 50px;
    gap: 23px;
  }
  .hero-copy h1 {
    font-size: clamp(44px, 8vw, 66px);
    line-height: 1.08;
  }
  .hero-copy {
    max-width: 650px;
  }
  .hero-description {
    font-size: 16px;
    max-width: 480px;
  }
  .hero-eyebrow {
    font-size: 10px !important;
  }
  .hero-description br {
    display: none;
  }
  .hero-visual {
    margin: 0;
    padding: 10px 0 50px;
    width: 100%;
    max-width: 640px;
    justify-self: center;
  }
  .dashboard-preview {
    transform: none;
  }
  .floating-receipt {
    left: auto;
    right: 16px;
    bottom: 8px;
    padding: 13px 20px;
    min-width: 180px;
  }
  .receipt-time {
    font-size: 31px;
  }
  .benefits-strip {
    gap: 20px;
    padding: 28px 0;
  }
  .benefit {
    display: block;
  }
  .benefit .feature-icon {
    margin-bottom: 12px;
  }
  .benefit h3 {
    font-size: 12px;
    line-height: 1.5;
  }
  .benefit p {
    font-size: 11px;
  }
  .section {
    padding-top: 62px;
  }
  .section-intro {
    font-size: 15px;
    margin: 18px 0 27px;
  }
  .steps-grid {
    gap: 20px;
  }
  .step {
    padding: 0;
  }
  .step h3 {
    font-size: 17px;
  }
  .step p:not(.step-number) {
    font-size: 13px;
  }
  .step:not(:last-child):after {
    right: 0;
  }
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .feature-card {
    padding: 24px;
  }
  .feature-card h3 {
    font-size: 17px;
  }
  .feature-card p {
    font-size: 13px;
  }
  .whatsapp-section {
    grid-template-columns: 1fr;
    padding: 36px 25px !important;
    margin-top: 60px !important;
    gap: 40px;
  }
  .chat-art {
    order: 1;
    padding: 0;
  }
  .chat-window {
    max-width: 370px;
    width: 100%;
  }
  .split-copy h2 {
    font-size: 34px;
  }
  .industry-pill {
    font-size: 12px;
    padding: 11px 17px;
  }
  .cta-band {
    flex-direction: column;
    align-items: flex-start;
    margin: 60px 0 50px !important;
    padding: 33px 27px;
  }
  .cta-band h2 {
    font-size: 29px;
  }
  .cta-band .wp-block-buttons {
    margin: 0;
  }
  .footer-main {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-description {
    margin: 14px 0 0;
  }
  .brand-caption {
    margin-bottom: 10px !important;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 12px;
  }
  .footer-origin {
    width: 100%;
  }
  .page-shell {
    padding-top: 35px;
  }
  .page-heading {
    margin-bottom: 35px;
  }
  .page-intro {
    font-size: 17px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .contact-layout > .wp-block-shortcode {
    margin: 0;
  }
  .two-grid {
    gap: 14px;
  }
  .pricing-card {
    padding: 27px;
  }
  .article-shell h1 {
    font-size: 36px;
  }
  .wp-block-post-template.is-layout-grid {
    grid-template-columns: 1fr !important;
  }
  .asisya-form {
    padding: 24px;
  }
  .hero-copy .wp-block-button__link {
    font-size: 14px;
    padding: 15px 19px;
  }
  .hero-trust {
    font-size: 10px;
  }
  .page-shell .cta-band {
    margin-top: 60px !important;
  }
  .wp-block-navigation__responsive-container.is-menu-open {
    background: white;
    color: var(--ink);
  }
}
@media (max-width: 420px) {
  .header-actions {
    display: none;
  }
  .hero-copy h1 {
    font-size: 44px;
  }
  .hero-eyebrow {
    font-size: 9px !important;
  }
  .hero-description {
    font-size: 15px;
  }
  .benefits-strip {
    gap: 13px;
  }
  .benefit h3 {
    font-size: 11px;
  }
  .benefit p {
    font-size: 10px;
  }
  .feature-grid,
  .two-grid {
    grid-template-columns: 1fr;
  }
  .feature-card {
    padding: 25px;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .step {
    display: grid;
    grid-template-columns: 44px 1fr;
    column-gap: 17px;
  }
  .step-number {
    width: 40px;
    height: 40px;
    grid-row: 1/3;
    margin: 0;
    font-size: 16px;
  }
  .step h3 {
    margin-bottom: 7px;
  }
  .step p:not(.step-number) {
    grid-column: 2;
  }
  .step:not(:last-child):after {
    top: 51px;
    bottom: -18px;
    left: 20px;
    right: auto;
    border-top: 0;
    border-left: 1px dashed #cad7eb;
  }
  .footer-main {
    gap: 17px;
  }
  .footer-column h3 {
    font-size: 12px;
  }
  .footer-column p {
    font-size: 11px;
  }
  .asisya-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .asisya-form {
    padding: 20px;
  }
  .wp-block-button__link {
    max-width: 100%;
  }
  .hero-copy .wp-block-buttons {
    gap: 10px;
  }
  .hero-copy .wp-block-button__link {
    font-size: 12px;
    padding: 14px 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}
