:root {
  --navy: #081d3a;
  --ink: #14243a;
  --muted: #536579;
  --line: #dce7ea;
  --teal: #078b87;
  --teal-dark: #056b68;
  --teal-soft: #e9f7f6;
  --amber: #d5a115;
  --cream: #fbf8f1;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(8, 29, 58, 0.12);
  --radius: 8px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: Calibri, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.4;
}

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

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

svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.andpos-page {
  min-height: 100vh;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, #fcfbf7 48%, #ffffff 100%);
}

.container {
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto;
}

.andpos-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  font-size: 16px;
  font-weight: 800;
}

.brand-name {
  display: block;
  font-size: 22px;
  line-height: 1.05;
}

.brand-sub {
  display: block;
  margin-top: 3px;
  color: #36475c;
  font-size: 13px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 800;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.86);
  white-space: nowrap;
}

.language-switcher a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 6px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.language-switcher a[aria-current="page"] {
  color: var(--white);
  background: var(--navy);
}

.nav-actions,
.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover { transform: translateY(-1px); }

.button-primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 12px 26px rgba(7, 139, 135, 0.2);
}

.button-primary:hover { background: var(--teal-dark); }

.button-secondary {
  color: var(--teal-dark);
  border-color: rgba(7, 139, 135, 0.56);
  background: rgba(255, 255, 255, 0.72);
}

.hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #f8fbfa;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, #ffffff 0%, rgba(255,255,255,0.94) 31%, rgba(255,255,255,0.34) 57%, rgba(255,255,255,0) 78%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 640px;
  align-items: center;
  padding: 52px 0;
}

.hero-copy {
  width: min(520px, 100%);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(48px, 5vw, 64px);
  line-height: 1.1;
  letter-spacing: 0;
}

.hero-subtitle {
  margin-bottom: 18px;
  color: #41536a;
  font-size: 18px;
}

.hero-actions { margin-bottom: 28px; }

.proof-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 22px;
  margin: 0 0 22px;
  padding: 0;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  list-style: none;
}

.proof-list li,
.einvoice-points li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.tick {
  display: inline-grid;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--amber);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.android-callout {
  width: min(500px, 100%);
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(7, 139, 135, 0.24);
  border-left: 5px solid var(--teal);
  border-radius: var(--radius);
  background: rgba(233, 247, 246, 0.88);
  box-shadow: 0 12px 30px rgba(8, 29, 58, 0.08);
}

.android-callout strong {
  display: block;
  margin-bottom: 5px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.25;
  overflow-wrap: break-word;
}

.android-callout span {
  display: block;
  color: #31445b;
  font-size: 16px;
  line-height: 1.35;
}

.section {
  padding: 64px 0;
}

.section-tight {
  padding-top: 10px;
}

.workflow-panel {
  position: relative;
  z-index: 5;
  margin-top: -40px;
  padding: 30px 34px;
  border: 1px solid rgba(213, 161, 21, 0.34);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.96);
  box-shadow: 0 12px 38px rgba(8, 29, 58, 0.08);
}

.panel-title,
.section-title {
  color: var(--navy);
  text-align: center;
  line-height: 1.18;
  overflow-wrap: break-word;
}

.panel-title {
  margin-bottom: 24px;
  font-size: clamp(25px, 3vw, 31px);
}

.section-title {
  margin-bottom: 28px;
  font-size: clamp(31px, 3.4vw, 39px);
}

.workflow-grid {
  display: grid;
  grid-template-columns: 1fr 46px 1fr 46px 1fr;
  align-items: center;
  gap: 24px;
}

.workflow-step {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 22px;
  align-items: center;
}

.big-icon,
.einvoice-icon,
.cta-icon {
  display: grid;
  place-items: center;
  color: var(--teal);
  background: var(--white);
}

.big-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
}

.big-icon svg,
.einvoice-icon svg,
.cta-icon svg {
  width: 42px;
  height: 42px;
}

.workflow-step h3 {
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 20px;
}

.workflow-step p {
  margin-bottom: 0;
  color: #34465c;
  font-size: 15px;
}

.arrow-dot {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  justify-self: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--amber);
  font-size: 22px;
  font-weight: 800;
}

.gallery-intro {
  max-width: 690px;
  margin: -12px auto 28px;
  color: var(--muted);
  text-align: center;
  font-size: 16px;
}

.gallery-grid,
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.gallery-card,
.industry-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #ffffff, #f0faf9);
  box-shadow: 0 12px 34px rgba(8, 29, 58, 0.06);
  overflow: hidden;
}

.gallery-preview {
  display: grid;
  height: 154px;
  place-items: center;
  background: #f7fbfb;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.gallery-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #f7fbfb;
}

.gallery-copy,
.industry-copy {
  padding: 18px;
}

.gallery-copy h3,
.industry-copy h3 {
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 18px;
}

.gallery-copy p,
.industry-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.industry-card {
  display: grid;
  grid-template-columns: 47% 1fr;
  min-height: 150px;
}

.industry-card img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
}

.einvoice-strip {
  display: grid;
  grid-template-columns: 1.15fr 1.85fr;
  align-items: center;
  gap: 30px;
  padding: 28px 32px;
  border: 1px solid #cae2e5;
  border-radius: var(--radius);
  background: linear-gradient(90deg, #effafa, #ffffff);
}

.einvoice-main {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  align-items: center;
}

.einvoice-icon {
  width: 64px;
  height: 64px;
}

.einvoice-main h2 {
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 26px;
}

.einvoice-main p {
  margin-bottom: 0;
  color: #34465c;
}

.einvoice-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  color: var(--navy);
  font-size: 14px;
  list-style: none;
}

.cta {
  padding: 36px 0 18px;
  color: var(--white);
  background: linear-gradient(120deg, #006d70, #024d5a);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.cta-intro {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: center;
}

.cta-icon {
  width: 58px;
  height: 58px;
  color: var(--white);
  background: transparent;
}

.cta-intro h2 {
  margin-bottom: 4px;
  font-size: 24px;
}

.cta-intro p {
  margin-bottom: 0;
  color: rgba(255,255,255,0.88);
}

.cta .button-primary {
  color: var(--teal-dark);
  background: var(--white);
}

.cta .button-secondary {
  color: var(--white);
  border-color: rgba(255,255,255,0.58);
  background: transparent;
}

.contact-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: rgba(255,255,255,0.9);
  list-style: none;
}

.contact-list li {
  display: flex;
  gap: 9px;
  align-items: center;
}

.contact-list svg {
  width: 18px;
  height: 18px;
}

.wp-note {
  margin-top: 24px;
  padding: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.65);
  text-align: center;
  font-size: 13px;
}

@media (max-width: 1180px) {
  .nav-links { gap: 22px; }
  .nav-actions .button-secondary { display: none; }
  .industry-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta-grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 900px) {
  html,
  body {
    overflow-x: hidden !important;
  }

  .andpos-page,
  .andpos-page section,
  .andpos-page header,
  .andpos-page div,
  .andpos-page article,
  .andpos-page ul,
  .andpos-page li,
  .andpos-page h1,
  .andpos-page h2,
  .andpos-page h3,
  .andpos-page p {
    min-width: 0;
    max-width: 100%;
    white-space: normal;
  }

  .container,
  .hero-copy,
  .hero-actions,
  .proof-list,
  .android-callout,
  .workflow-panel,
  .workflow-grid,
  .workflow-step,
  .gallery-grid,
  .gallery-card,
  .industry-grid,
  .industry-card,
  .einvoice-strip,
  .cta-grid {
    width: 100% !important;
    max-width: 100% !important;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
    overflow-x: hidden;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .brand-name { font-size: 19px; }

  .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  .hero::after {
    background: linear-gradient(180deg, #ffffff 0%, rgba(255,255,255,0.98) 46%, rgba(255,255,255,0.22) 76%, rgba(255,255,255,0) 100%);
  }

  .hero-bg {
    position: relative;
    min-height: 260px;
    order: 2;
  }

  .hero-content {
    min-height: auto;
    padding: 44px 0 24px;
  }

  h1 {
    font-size: 39px;
    line-height: 1.12;
  }

  .hero-copy,
  .hero-actions,
  .proof-list {
    width: 100%;
    max-width: 330px;
  }

  .hero-actions .button,
  .cta-actions .button {
    width: 100%;
  }

  .proof-list,
  .workflow-grid,
  .industry-grid,
  .gallery-grid,
  .einvoice-strip,
  .einvoice-points {
    grid-template-columns: 1fr;
  }

  .workflow-panel {
    margin-top: 0;
    padding: 26px 18px;
  }

  .workflow-step {
    max-width: 100%;
  }

  .arrow-dot {
    transform: rotate(90deg);
  }

  .gallery-preview {
    height: 176px;
  }

  .industry-card {
    grid-template-columns: 42% 1fr;
  }

  .einvoice-strip {
    padding: 24px 18px;
  }

  .cta-intro,
  .einvoice-main {
    grid-template-columns: 58px 1fr;
  }
}

@media (max-width: 560px) {
  .brand-sub { display: none; }
  .brand-mark {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }

  .nav {
    flex-wrap: wrap;
    gap: 10px 14px;
    padding: 10px 0;
  }

  .brand { flex: 1 1 100%; }

  .language-switcher {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(330px, 100%) !important;
    max-width: 330px !important;
    justify-content: center;
    margin-left: 0;
  }

  .language-switcher a {
    min-width: 0;
    padding-left: 6px;
    padding-right: 6px;
  }

  h1 { font-size: 34px; }
  .section { padding: 48px 0; }

  .hero-copy,
  .hero-actions,
  .proof-list,
  .android-callout {
    max-width: 320px !important;
  }

  .hero-subtitle,
  .android-callout strong,
  .android-callout span,
  .workflow-step p,
  .industry-copy p {
    max-width: 280px !important;
    font-size: 14px;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .panel-title,
  .section-title {
    max-width: 300px !important;
    margin-left: auto;
    margin-right: auto;
  }

  .workflow-step {
    grid-template-columns: 56px 1fr;
    gap: 14px;
  }

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

  .big-icon svg {
    width: 31px;
    height: 31px;
  }

  .industry-card {
    grid-template-columns: 1fr;
  }

  .industry-card img {
    min-height: 170px;
  }
}
