html, body { margin: 0; padding: 0; background: #f9f9f9; }

.w2a-block, .w2a-block * { box-sizing: border-box; }
  .w2a-block {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #666;
    line-height: 1.5;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5em;
  }
  .w2a-block a { text-decoration: none; }
  .w2a-block h1, .w2a-block h2 {
    color: #666;
    font-weight: 600;
    margin: 0 0 0.75em;
  }

  /* ── Hero ── */
  .w2a-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5em;
    align-items: center;
    padding: 2.5em 0 3em;
  }
  .w2a-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e8f9e8, #d4f5ff);
    color: #078a00;
    font-size: 0.78em;
    font-weight: 600;
    padding: 0.45em 1.1em;
    border-radius: 20px;
    border: 1px solid rgba(9,179,0,.2);
    margin-bottom: 1em;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
  .w2a-hero h1 {
    font-size: clamp(1.6em, 4vw, 2.286em);
    line-height: 1.25;
  }
  .w2a-desc {
    font-size: 1.1em;
    line-height: 1.65;
    margin-bottom: 1.5em;
  }
  .w2a-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 2em;
  }
  .w2a-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.65em;
    margin-bottom: 0.65em;
    font-size: 0.95em;
  }
  .w2a-check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: #09b300;
    border-radius: 50%;
    position: relative;
  }
  .w2a-check::after {
    content: '';
    position: absolute;
    left: 6px; top: 4px;
    width: 5px; height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }
  .w2a-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
  }
  .w2a-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    padding: 0.95em 2.2em;
    border-radius: 6px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border: 1px solid #09b300;
    transition: transform .15s, box-shadow .15s;
    text-decoration: none !important;
    line-height: 1.2;
    cursor: pointer;
  }
  .w2a-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(9,179,0,.25); text-decoration: none !important; }
  .w2a-block a.w2a-btn--solid {
    background: #09b300 !important;
    color: #ffffff !important;
    border-color: #09b300 !important;
  }
  .w2a-block a.w2a-btn--solid:hover {
    background: #078a00 !important;
    color: #ffffff !important;
  }
  .w2a-block a.w2a-btn--outline {
    background: #ffffff !important;
    color: #09b300 !important;
    border-color: #09b300 !important;
  }
  .w2a-block a.w2a-btn--outline:hover {
    background: #f0fff0 !important;
    color: #078a00 !important;
  }

  /* ── Hero visual (Store + QR image) ── */
  .w2a-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 320px;
  }
  .w2a-visual-bg {
    position: absolute;
    inset: 8% 0;
    background:
      radial-gradient(ellipse 70% 60% at 30% 50%, rgba(7,172,224,.1) 0%, transparent 70%),
      radial-gradient(ellipse 60% 50% at 75% 45%, rgba(9,179,0,.12) 0%, transparent 70%);
    border-radius: 24px;
    z-index: 0;
  }
  .w2a-hero-img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    max-width: 520px;
    height: auto;
    border-radius: 12px;
  }
  .w2a-float-tag {
    position: relative;
    z-index: 2;
    margin-top: 1em;
    background: #fff;
    border: 1px solid rgba(9,179,0,.25);
    border-radius: 30px;
    padding: 0.45em 1.2em;
    font-size: 0.75em;
    font-weight: 600;
    color: #09b300;
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
    white-space: nowrap;
  }

  /* ── Video section ── */
  .w2a-video {
    text-align: center;
    padding: 2em 0 3em;
  }
  .w2a-video h2 {
    font-size: 1.57em;
    text-align: center;
  }
  .w2a-sub {
    text-align: center;
    font-size: 1.05em;
    max-width: 580px;
    margin: 0 auto 2em;
    color: #666;
  }
  .w2a-video-box {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
    padding-bottom: 56.25%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,.12);
  }
  .w2a-video-box iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
  .w2a-caption {
    margin-top: 1.2em;
    font-style: italic;
    color: #999;
    font-size: 0.92em;
  }

  @media (max-width: 860px) {
    .w2a-hero { grid-template-columns: 1fr; text-align: center; }
    .w2a-checklist li { justify-content: center; text-align: left; }
    .w2a-btns { justify-content: center; }
    .w2a-visual { order: -1; min-height: 280px; }
  }
  @media (max-width: 480px) {
    .w2a-hero-img { max-width: 100%; }
    .w2a-btns { flex-direction: column; align-items: stretch; }
    .w2a-btn { width: 100%; }
  }


  .w2a-block { background: #f9f9f9; max-width: 1200px; }
  .w2a-block a { color: #09b300; font-weight: 500; }
  .w2a-block a:hover { text-decoration: underline; }
  .w2a-block h2 { font-size: 1.57em; text-align: center; }
  .w2a-block h3, .w2a-block h4 { color: #666; font-weight: 600; }
  .w2a-section { padding: 3em 0; max-width: 1000px; margin: 0 auto; }
  .w2a-sub { text-align: center; font-size: 1.05em; max-width: 640px; margin: 0 auto 2em; }
  .w2a-video-sec { text-align: center; }
  .w2a-video-box { position: relative; max-width: 760px; margin: 0 auto; padding-bottom: 56.25%; border-radius: 8px; overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,.12); }
  .w2a-video-box iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
  .w2a-caption { margin-top: 1.2em; font-style: italic; color: #999; font-size: .92em; text-align: center; }
  .w2a-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 2em; }
  .w2a-step { background: #fff; border-radius: 8px; padding: 2em 1.5em; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,.1); position: relative; border-top: 3px solid #07ace0; }
  .w2a-step-num { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); width: 32px; height: 32px; background: #09b300; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; }
  .w2a-step-icon { margin: 1em 0; }
  .w2a-step h3 { font-size: 1.1em; }
  .w2a-step p { font-size: .95em; line-height: 1.6; margin: 0; }
  .w2a-cta { text-align: center; margin-top: 2em; }
  .w2a-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5em 2em;
    margin-top: 2em;
  }
  .w2a-feature, .w2a-feature--rev {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1em;
    margin-bottom: 0;
  }
  .w2a-feature-img { flex-shrink: 0; width: auto; display: flex; justify-content: center; }
  .w2a-icon-box { width: 100px; height: 100px; background: #fff; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,.1); display: flex; align-items: center; justify-content: center; }
  .w2a-feature-text { max-width: 420px; }
  .w2a-feature-text h3 { color: #09b300 !important; text-align: center !important; margin-bottom: .5em; }
  .w2a-feature-text p { margin: 0; line-height: 1.6; text-align: center !important; color: #555 !important; }
  .w2a-platforms { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5em; }
  .w2a-platform { background: #fff; border-radius: 8px; padding: 1.5em; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,.1); }
  .w2a-plogo { width: 56px; height: 56px; margin: 0 auto 1em; border-radius: 12px; background: linear-gradient(135deg,#4285f4,#34a853); color: #fff; font-size: 1.5em; font-weight: 700; display: flex; align-items: center; justify-content: center; }
  .w2a-plogo--wp { background: linear-gradient(135deg,#21759b,#1a5f7a); }
  .w2a-plogo--corp { background: linear-gradient(135deg,#07ace0,#09b300); font-size: 1.2em; }
  .w2a-plogo--any { background: linear-gradient(135deg,#666,#999); font-size: .75em; }
  .w2a-platform p { font-size: .9em; margin: 0; }
  .w2a-export-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5em; }
  .w2a-export { display: flex; flex-direction: column; border-radius: 8px; padding: 1.75em 2em; color: #fff; box-shadow: 0 5px 15px rgba(0,0,0,.1); }
  .w2a-export--android { background: linear-gradient(160deg,#3ddc84,#09b300); }
  .w2a-export--ios { background: linear-gradient(160deg,#555,#1a1a1a); }
  .w2a-export--pwa { background: linear-gradient(160deg,#07ace0,#0693e3); }
  .w2a-export--tester { background: linear-gradient(160deg,#7bdcb5,#09b300); }
  .w2a-export { text-align: center; }
  .w2a-export h3 { color: #fff !important; font-size: 1.5em; margin-bottom: .25em; text-align: center !important; }
  .w2a-export-tag { color: rgba(255,255,255,.95) !important; font-size: .95em; margin: 0 0 1em; text-align: center !important; }
  .w2a-export-desc { color: rgba(255,255,255,.95) !important; font-size: .92em; line-height: 1.6; margin: 0 0 1em; flex: 1; text-align: center !important; }
  .w2a-export-desc strong { color: #fff !important; }
  .w2a-export-list { list-style: none; margin: 0 auto 1.5em; padding: 0; display: inline-block; text-align: left; }
  .w2a-export-list li { padding-left: 1.25em; position: relative; margin-bottom: .4em; font-size: .88em; color: rgba(255,255,255,.92) !important; }
  .w2a-export-list li::before { content: '\2713'; position: absolute; left: 0; font-weight: 700; }
  .w2a-export-actions { display: flex; flex-wrap: wrap; gap: 1em; align-items: center; justify-content: center; margin-top: auto; }
  .w2a-export .w2a-btn--solid {
    background: #fff !important;
    color: #09b300 !important;
    border-color: #fff !important;
  }
  .w2a-export .w2a-btn--solid:hover {
    background: #f0fff0 !important;
    color: #078a00 !important;
  }
  .w2a-export--ios .w2a-btn--solid { color: #333 !important; }
  .w2a-export--ios .w2a-btn--solid:hover { color: #111 !important; }
  .w2a-export-link { color: #fff !important; font-weight: 600; opacity: .9; text-decoration: none !important; }
  .w2a-export-link:hover { opacity: 1; text-decoration: underline !important; }
  .w2a-btn--sm { padding: .6em 1.2em; font-size: .9em; min-width: auto; }
  .w2a-testimonial { max-width: 700px; margin: 0 auto; background: #fff; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,.1); padding: 2.5em; }
  .w2a-testimonial blockquote p { font-style: italic; font-size: 1.14em; line-height: 1.6; margin: 0; }
  .w2a-testimonial footer { margin-top: 1.5em; }
  .w2a-faq { max-width: 700px; margin: 0 auto; }
  .w2a-faq-item { background: #fff; border-radius: 8px; margin-bottom: .75em; box-shadow: 0 2px 8px rgba(0,0,0,.06); }
  .w2a-faq-item summary { padding: 1.25em 1.5em; font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; color: #666; }
  .w2a-faq-item summary::-webkit-details-marker { display: none; }
  .w2a-faq-item summary::after { content: '+'; font-size: 1.5em; color: #09b300; }
  .w2a-faq-item[open] summary::after { content: '-'; }
  .w2a-faq-item p { padding: 0 1.5em 1.25em; margin: 0; line-height: 1.6; font-size: .95em; }
  .w2a-final-card { background: linear-gradient(135deg,#09b300,#07ace0); border-radius: 8px; padding: 3.5em 2em; text-align: center !important; color: #fff !important; }
  .w2a-final-card h2 { color: #fff !important; font-size: 1.8em; text-align: center !important; }
  .w2a-final-card p { color: #fff !important; font-size: 1.1em; margin-bottom: 2em; text-align: center !important; opacity: 1; }
  .w2a-final-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 1em; }
  .w2a-final .w2a-btn--solid { background: #fff !important; color: #09b300 !important; border-color: #fff !important; }
  .w2a-final .w2a-btn--solid:hover { background: #f0fff0 !important; color: #078a00 !important; }
  .w2a-final .w2a-btn--outline { background: transparent !important; color: #fff !important; border-color: #fff !important; }
  .w2a-final .w2a-btn--outline:hover { background: rgba(255,255,255,.15) !important; color: #fff !important; }
  @media (max-width: 900px) {
    .w2a-hero { grid-template-columns: 1fr; text-align: center; }
    .w2a-checklist li { justify-content: center; text-align: left; }
    .w2a-btns { justify-content: center; }
    .w2a-visual { order: -1; }
    .w2a-steps { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .w2a-platforms { grid-template-columns: repeat(2,1fr); }
    .w2a-features { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  }
  @media (max-width: 600px) {
    .w2a-export-grid, .w2a-platforms { grid-template-columns: 1fr; }
    .w2a-btns, .w2a-final-btns { flex-direction: column; align-items: stretch; }
    .w2a-hero-img { max-width: 100%; }
  }

  /* WordPress theme overrides — keep colors & centering intact */
  .w2a-block .w2a-section > h2,
  .w2a-block .w2a-video-sec > h2,
  .w2a-block .w2a-features-sec > h2,
  .w2a-block .w2a-benefits-sec > h2,
  .w2a-block .w2a-pricing-sec > h2 {
    color: #09b300 !important;
    text-align: center !important;
  }
  .w2a-block .w2a-sub,
  .w2a-block .w2a-caption {
    color: #555 !important;
    text-align: center !important;
  }
  .w2a-block .w2a-section,
  .w2a-block .w2a-video-sec,
  .w2a-block .w2a-cta {
    text-align: center !important;
  }
  .w2a-block .w2a-export p {
    color: rgba(255,255,255,.95) !important;
  }
  .w2a-block .w2a-export em {
    color: rgba(255,255,255,.85) !important;
    font-style: italic;
  }

  /* App benefits */
  .w2a-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25em;
    margin-top: 2em;
  }
  .w2a-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85em;
    background: #fff;
    border-radius: 8px;
    padding: 1.25em 1.35em;
    box-shadow: 0 2px 10px rgba(0,0,0,.07);
    text-align: left;
  }
  .w2a-benefit-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: #09b300;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .85em;
  }
  .w2a-benefit-item p {
    margin: 0;
    font-size: .95em;
    line-height: 1.55;
    color: #555 !important;
    text-align: left !important;
  }

  /* Pricing */
  .w2a-pricing-main {
    max-width: 640px;
    margin: 0 auto 2.5em;
    background: linear-gradient(135deg, #09b300, #07ace0);
    border-radius: 10px;
    padding: 2.25em 2em;
    text-align: center;
    color: #fff;
    box-shadow: 0 8px 24px rgba(9,179,0,.2);
  }
  .w2a-pricing-main h3 {
    color: #fff !important;
    font-size: 2.2em;
    margin: 0 0 .15em;
    text-align: center !important;
  }
  .w2a-pricing-main .w2a-pricing-period {
    font-size: 1em;
    opacity: .92;
    margin-bottom: 1em;
  }
  .w2a-pricing-main p {
    color: #fff !important;
    font-size: 1.02em;
    line-height: 1.6;
    margin: 0 0 1.5em;
    text-align: center !important;
  }
  .w2a-pricing-main .w2a-btn--solid {
    background: #fff !important;
    color: #09b300 !important;
    border-color: #fff !important;
  }
  .w2a-pricing-main .w2a-btn--solid:hover {
    background: #f0fff0 !important;
    color: #078a00 !important;
  }
  .w2a-pricing-services {
    max-width: 760px;
    margin: 0 auto;
  }
  .w2a-pricing-services > h3 {
    color: #666 !important;
    text-align: center !important;
    font-size: 1.15em;
    margin-bottom: 1.25em;
  }
  .w2a-pricing-list {
    list-style: none;
    margin: 0 0 1.5em;
    padding: 0;
  }
  .w2a-pricing-list li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1em;
    background: #fff;
    border-radius: 8px;
    padding: 1.1em 1.35em;
    margin-bottom: .65em;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    text-align: left;
  }
  .w2a-pricing-list li span:first-child {
    flex: 1;
    color: #555;
    font-size: .95em;
    line-height: 1.5;
  }
  .w2a-pricing-price {
    flex-shrink: 0;
    font-weight: 700;
    color: #09b300;
    font-size: 1.05em;
    white-space: nowrap;
  }
  .w2a-pricing-bundle {
    background: #fff;
    border: 2px solid #09b300;
    border-radius: 10px;
    padding: 1.75em 1.5em;
    text-align: center;
    box-shadow: 0 6px 20px rgba(9,179,0,.12);
  }
  .w2a-pricing-bundle-tag {
    display: inline-block;
    background: #e8f9e8;
    color: #078a00;
    font-size: .75em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: .35em .9em;
    border-radius: 20px;
    margin-bottom: .75em;
  }
  .w2a-pricing-bundle h3 {
    color: #09b300 !important;
    font-size: 2em;
    margin: 0 0 .5em;
    text-align: center !important;
  }
  .w2a-pricing-bundle p {
    color: #555 !important;
    font-size: .98em;
    line-height: 1.6;
    margin: 0 0 1.25em;
    text-align: center !important;
  }
  @media (max-width: 700px) {
    .w2a-benefits-grid { grid-template-columns: 1fr; }
    .w2a-pricing-list li { flex-direction: column; gap: .35em; }
    .w2a-pricing-price { align-self: flex-start; }
  }
