@charset "UTF-8";
/* ==========================================================================
   billo.ge brand layer on top of the Sasico theme.
   Loaded last, so everything here overrides app.css / style.css.

   Palette is the same one the app uses (invoice/static/invoice/css/index.css):
     primary #0D5BFF, primary-dark #0A49CC, accent #35D6A8
   ========================================================================== */

/* Same font files as the app (invoice/static/invoice/fonts). BPG Nino Mtavruli
   for chrome, Noto for glyphs it lacks (Latin/Cyrillic/Armenian). */
@font-face {
  font-family: "BPG Nino Mtavruli";
  src: url("../../fonts/BPGNinoMtavruli-Book.otf") format("opentype");
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "BPG Nino Mtavruli";
  src: url("../../fonts/BPGNinoMtavruli-Bold.otf") format("opentype");
  font-display: swap;
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans Georgian";
  src: url("../../fonts/NotoSansGeorgian-Regular.ttf") format("truetype");
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans";
  src: url("../../fonts/NotoSans-Regular.ttf") format("truetype");
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans";
  src: url("../../fonts/NotoSans-Bold.ttf") format("truetype");
  font-display: swap;
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Noto Sans Armenian";
  src: url("../../fonts/NotoSansArmenian-Regular.ttf") format("truetype");
  font-display: swap;
  font-weight: 400;
  font-style: normal;
  unicode-range: U+0530-058F, U+FB13-FB17;
}
@font-face {
  font-family: "Noto Sans Armenian";
  src: url("../../fonts/NotoSansArmenian-Bold.ttf") format("truetype");
  font-display: swap;
  font-weight: 700;
  font-style: normal;
  unicode-range: U+0530-058F, U+FB13-FB17;
}

:root {
  --theme-color: #0d5bff;
  --theme-color-dark: #0a49cc;
  --accent-color: #35d6a8;
  --bg-color: #0d5bff1a;
  --title-color: #0f172a;
  --body-color: #5b6472;
  --title-font: "BPG Nino Mtavruli", "Noto Sans Georgian", "Noto Sans", "Noto Sans Armenian", sans-serif;
  --body-font: "BPG Nino Mtavruli", "Noto Sans Georgian", "Noto Sans", "Noto Sans Armenian", sans-serif;
}

/* Georgian sits slightly lower than Latin; a touch more line-height keeps
   headings from clipping the descenders. */
body {
  line-height: 1.7;
}
.h1, h1, .h2, h2, .h3, h3 {
  line-height: 1.35;
  /* Armenian/Georgian compounds can be wider than a phone screen. */
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Light theme only — toggle removed from the page. */
#darkModeBtn {
  display: none !important;
}

/* --------------------------------------------------------------------------
   Hard-coded theme greens left over from Sasico
   -------------------------------------------------------------------------- */
.hero-btn {
  border-bottom-color: #0d5bff26;
}
.feature-block {
  border-color: #0d5bff1a;
}
.separator-line {
  background: radial-gradient(50% 50%, #0d5bff80 0%, #0d5bff00 100%);
}
.analytics.active .separator-line {
  background: radial-gradient(50% 50%, #ffffff26 0%, #0d5bff00 100%);
}

/* --------------------------------------------------------------------------
   Logo
   -------------------------------------------------------------------------- */
.header-logo a {
  width: auto;
  line-height: 0;
}
.mobile-menu .close-btn {
  cursor: pointer;
}

/* One wordmark for the header; the theme hides the last of its two logo links. */
.header-logo a:only-child {
  display: inline-block;
}
.header-logo img {
  width: auto;
  height: 40px;
}
.footer-logo img {
  width: auto;
  height: 46px;
}

/* Georgian menu labels are long; keep each on one line. */
.menu-style11 ul li a {
  white-space: nowrap;
  font-weight: 700;
}
.header-main .menu-style11 ul li a {
  font-size: 15px;
  letter-spacing: 0.01em;
}

/* --------------------------------------------------------------------------
   Button labels
   --------------------------------------------------------------------------
   `.btn-style1 span` is the round arrow badge in the theme, so the translated
   label needs its own class that undoes that styling. Several theme rules
   (e.g. `.hero-btn .btn-style1.v2 span`) are more specific than any sane
   selector here, hence !important. */
span.btn-label {
  display: inline !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  border-radius: 0 !important;
  background-color: transparent !important;
  line-height: inherit !important;
}

/* --------------------------------------------------------------------------
   Hero trust chips (replaces the theme's Clutch rating badge)
   -------------------------------------------------------------------------- */
.hero-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
}
.hero-chips li {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--title-color);
}
.hero-chips img {
  width: 20px;
  height: 20px;
  flex: none;
}
.analytics.active .hero-chips li {
  color: #fff;
}

/* --------------------------------------------------------------------------
   Language switcher — compact code + name list, no globe pill
   -------------------------------------------------------------------------- */
.lang-switch {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-right: 14px;
  text-align: left;
}
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 4px 0 10px;
  border: 0;
  border-radius: 6px;
  background-color: transparent;
  color: var(--title-color);
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  cursor: pointer;
}
.lang-toggle:hover,
.lang-switch.open .lang-toggle {
  color: var(--theme-color);
}
.lang-toggle svg {
  display: none;
}
.lang-toggle::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: 2px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.55;
}
.lang-list {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 60;
  min-width: 168px;
  margin: 0;
  padding: 4px;
  list-style: none;
  border: 1px solid #0f172a14;
  border-radius: 10px;
  background-color: var(--white-color);
  box-shadow: 0 8px 28px #0f172a18;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
}
.lang-switch.open .lang-list {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.lang-list li {
  margin: 0;
  list-style: none;
}
.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 8px 10px;
  border: 0;
  border-radius: 7px;
  background-color: transparent;
  color: var(--title-color);
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
}
.lang-option .lang-code {
  flex: none;
  min-width: 1.6em;
  font-weight: 700;
  color: var(--theme-color);
}
.lang-option:hover {
  background-color: #0d5bff0f;
}
.lang-option.active {
  background-color: #0d5bff12;
}
.lang-option.active .lang-code {
  color: var(--theme-color-dark);
}

.mobile-lang {
  margin: 0;
  padding: 0;
  border: 0;
}
.mobile-lang .lang-switch {
  display: none;
}
.mobile-lang-label {
  display: block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8390a8;
}
.mobile-lang-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.mobile-lang-pills li {
  margin: 0;
  list-style: none;
}
.mobile-lang-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 36px;
  padding: 0 12px;
  border: 1px solid #0f172a14;
  border-radius: 8px;
  background: #fff;
  color: var(--title-color);
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.15s, background-color 0.15s, color 0.15s;
}
.mobile-lang-pill:hover {
  border-color: var(--theme-color);
  color: var(--theme-color);
}
.mobile-lang-pill.active {
  border-color: var(--theme-color);
  background-color: var(--theme-color);
  color: #fff;
}
@media (min-width: 1200px) {
  .mobile-lang {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   Product screenshots: frame + mobile CSS crop of the desktop asset
   -------------------------------------------------------------------------- */
.shot {
  display: block;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 24px 60px #0f172a1f;
}
.shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
}
.analytics.active .shot {
  box-shadow: 0 24px 60px #00000059;
}
.feature-sec3 .feature-img .shot {
  width: 100%;
}
.feature-sec3 .feature-img .shot img {
  width: 100%;
}
/* The theme pins the hero shot to the viewport edge (right: 0) below 1500px,
   which clips its rounded corner and shadow. Keep a gutter instead, taken out
   of the theme's width so the shot does not move closer to the hero text. */
@media (min-width: 993px) and (max-width: 1500px) {
  .hero-img {
    right: 24px;
    width: 676px;
  }
}
@media (min-width: 993px) and (max-width: 1399px) {
  .hero-img {
    width: 576px;
  }
}
@media (min-width: 993px) and (max-width: 1199px) {
  .hero-img {
    width: 476px;
  }
}
/* Phones get their own portrait captures of the real mobile app (the `-m-`
   sources in landing.html), shown whole: no zoom crop, nothing cut off. The
   frame is capped at the capture's own 420px width so the UI stays 1:1 sharp. */
@media (max-width: 767px) {
  .shot {
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    aspect-ratio: auto;
  }
  .shot img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transform: none;
  }
}

/* The theme drops the hero artwork below 992px because it is absolutely
   positioned. The screenshot is the most useful thing on the page, so bring it
   back as a normal in-flow image instead. */
@media (max-width: 992px) {
  .hero-img {
    display: block;
    position: static;
    width: 100%;
    height: auto;
    margin-top: 34px;
  }
  .hero-img .shot {
    width: 100%;
  }
  /* Tablet band: the full desktop shot, scaled to the column. */
  .hero-img .shot img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}
/* Below 1200px the header collapses to the hamburger; the switcher would
   collide with it, so it lives in the mobile menu there. */
@media (max-width: 1199px) {
  .header-btn .lang-switch {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   Section rhythm
   --------------------------------------------------------------------------
   The theme pads every section by 120px on both sides, so two neighbouring
   sections ended up 240px apart. Here each gap is one --sec-gap: the sections
   that used to double up lose one side of their padding. */
:root {
  --sec-gap: 100px;
  --sec-title-gap: 52px;
}
@media (max-width: 1199px) {
  :root {
    --sec-gap: 84px;
  }
}
@media (max-width: 992px) {
  :root {
    --sec-gap: 68px;
    --sec-title-gap: 40px;
  }
}
@media (max-width: 576px) {
  :root {
    --sec-gap: 52px;
    --sec-title-gap: 30px;
  }
}
.space,
.space-top {
  padding-top: var(--sec-gap);
}
.space,
.space-bottom {
  padding-bottom: var(--sec-gap);
}
/* Services → "what we offer" and "editor" → "history" were doubled. */
.main-sec .feature-sec {
  padding-bottom: 0;
}
.cta-sec {
  padding-top: 0;
}
.sec-title {
  margin-bottom: var(--sec-title-gap);
}
/* Tighten hero ↔ header gap on desktop (theme uses ~292px top padding). */
.hero-content {
  padding: 168px 0 var(--sec-gap);
}
.feature-content4 .sec-title {
  margin-bottom: 36px;
}
.cat-img {
  margin-top: 48px;
}
@media (max-width: 992px) {
  .hero-content {
    padding: 130px 0 0;
  }
  .hero-img {
    margin: 36px 0 var(--sec-gap) !important;
  }
  .feature-content4 {
    margin-bottom: 36px;
  }
  .cta-img {
    margin-top: 36px;
  }
  .cat-img {
    margin-top: 36px;
  }
}
@media (max-width: 767px) {
  .cta-info2 {
    padding: 44px 24px;
  }
  .cta-content2 .sec-title p {
    margin-bottom: 28px;
  }
  .feature-block2 {
    padding: 28px 24px;
  }
}

/* --------------------------------------------------------------------------
   Footer — flat, quiet, no decorative glow / pill stack
   -------------------------------------------------------------------------- */
.billo-footer {
  --footer-bg: #0f172a;
  --footer-text: #94a3b8;
  --footer-line: #ffffff12;
  position: relative;
  margin-top: var(--sec-gap);
  padding-top: 64px;
  border-radius: 0;
  background: var(--footer-bg);
  color: var(--footer-text);
  overflow: visible;
}
.billo-footer #scrollTopBtn {
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 50%;
  width: 44px;
  height: 44px;
  transform: translate(-50%, -50%);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: none;
}
.billo-footer #scrollTopBtn:hover {
  background-color: var(--theme-color-dark);
  transform: translate(-50%, calc(-50% - 2px));
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 36px 40px;
  padding-bottom: 48px;
}
.footer-brand .footer-logo {
  display: inline-block;
  margin-bottom: 18px;
  line-height: 0;
}
.billo-footer .footer-logo img {
  width: auto;
  height: 36px;
  filter: brightness(0) invert(1);
}
.footer-brand p {
  max-width: 320px;
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--footer-text);
}
.footer-brand .footer-contact {
  margin-top: 14px;
}
.footer-contact a {
  color: var(--footer-text);
  transition: color 0.15s;
}
.footer-contact a:hover {
  color: #fff;
}

.footer-title {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: none;
  color: #fff;
}
.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-links li {
  margin: 0 0 10px;
}
.footer-links li:last-child {
  margin-bottom: 0;
}
.footer-links a {
  display: inline;
  font-size: 14px;
  line-height: 1.5;
  color: var(--footer-text);
  transition: color 0.15s;
}
.footer-links a:hover {
  color: #fff;
  transform: none;
}

.billo-footer .footer-bottom {
  border-top: 1px solid var(--footer-line);
}
.billo-footer .footer-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 24px;
  padding: 20px 0;
}
.billo-footer .footer-box p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #64748b;
}
.footer-made {
  display: inline;
}
.footer-made::before {
  content: none;
}

@media (max-width: 1199px) {
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-brand p {
    max-width: 480px;
  }
}
@media (max-width: 767px) {
  .billo-footer {
    padding-top: 48px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
    padding-bottom: 36px;
  }
}
@media (max-width: 416px) {
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }
  .billo-footer .footer-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* --------------------------------------------------------------------------
   Mobile menu
   -------------------------------------------------------------------------- */
.mobile-menu {
  width: min(100vw - 48px, 340px);
  right: calc(-1 * min(100vw - 48px, 340px) - 8px);
  padding: 0;
  background: #fff;
  box-shadow: -12px 0 40px #0f172a1f;
  display: flex;
  flex-direction: column;
}
.mobile-menu.active {
  right: 0;
}
.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px 18px;
  border-bottom: 1px solid #0f172a0f;
}
.mobile-menu-logo {
  display: inline-flex;
  line-height: 0;
}
.mobile-menu-logo img {
  height: 32px;
  width: auto;
}
.mobile-menu .close-btn {
  margin: 0;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #f1f5f9;
  flex: none;
}
.mobile-menu .close-btn:hover {
  background: #e2e8f0;
}
.mobile-menu .close-btn img {
  width: 14px;
}
.mobile-menu nav {
  flex: 1;
  padding: 12px 16px 8px;
  overflow-y: auto;
}
.mobile-menu .main-menu11 {
  padding-top: 4px;
}
.mobile-menu .main-menu11 li {
  border-bottom: 0;
  padding: 0;
  margin: 0 0 4px;
}
.mobile-menu .main-menu11 li a {
  padding: 14px 14px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--title-color);
}
.mobile-menu .main-menu11 li a:hover,
.mobile-menu .main-menu11 li a.active,
.mobile-menu .main-menu11 .active a {
  background: #0d5bff0f;
  color: var(--theme-color) !important;
}
.mobile-menu-foot {
  margin-top: auto;
  padding: 20px 24px 28px;
  border-top: 1px solid #0f172a0f;
  background: #f8fafc;
}
.mobile-menu-foot .mobile-cta {
  display: flex;
  width: 100%;
  margin-top: 20px;
  justify-content: center;
}
.mobile-menu-foot .mobile-cta .btn-label {
  flex: 1;
  text-align: center;
}
.menu-overlay {
  background: #0f172a66;
  backdrop-filter: blur(2px);
}

/* On phones the theme centres the hamburger inside .header-btn, which has no
   height there, so it sat ~20px above the logo; give it the logo's box. */
@media (max-width: 576px) {
  .header-btn {
    top: 16px;
    height: 40px;
  }
  .hero-content {
    padding-top: 112px;
  }
}
