

/* Start:/local/templates/main/styles.css?17762824723024*/
/* ── Dropdown ── */
.nav-dropdown { position: relative; }
.nav-dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}
.nav-dropdown > a::after {
    content: '▾';
    font-size: 10px;
    opacity: .55;
    transition: transform .2s;
}
.nav-dropdown:hover > a::after,
.nav-dropdown.open > a::after { transform: rotate(180deg); }

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #2a2a2a;
    border-radius: 16px;
    padding: 20px 8px 8px;
    min-width: 230px;
    z-index: 300;
    box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu { display: block; }

.dropdown-menu a {
    display: flex !important;
    align-items: center;
    gap: 8px;
    padding: 9px 14px !important;
    border-radius: 10px;
    font-size: 13px !important;
    color: #ccc !important;
    text-decoration: none;
    white-space: nowrap;
    transition: background .15s;
}
.dropdown-menu a:hover { background: rgba(255,255,255,.1); color: #fff !important; }
.dropdown-menu a .emoji { font-size: 16px; flex-shrink: 0; }

/* ── Burger ── */
.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 310;
}
.burger-btn span {
    display: block !important;
    height: 2px !important;
    width: 100% !important;
    border-radius: 2px;
    background: #fff;
    transition: transform .3s, opacity .3s;
}
.burger-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.active span:nth-child(2) { opacity: 0; }
.burger-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile overlay ── */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: #1e1e1e;
    z-index: 299;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 80px 20px 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
    color: #eee;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    padding: 13px 24px;
    border-radius: 12px;
    width: 100%;
    max-width: 300px;
    text-align: left;
    transition: background .15s;
    display: flex;
    align-items: center;
    gap: 10px;
}
.mobile-nav a:hover { background: rgba(255,255,255,.08); }
.mobile-nav .mob-section-label {
    color: #666;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .12em;
    width: 100%;
    max-width: 300px;
    padding: 14px 24px 4px;
}
.mobile-nav hr {
    border: none;
    border-top: 1px solid rgba(255,255,255,.08);
    width: 100%;
    max-width: 300px;
    margin: 8px 0;
}

@media (max-width: 767px) {
    .header-nav-links { display: none !important; }
    .burger-btn { display: flex; }
}
/* End */


/* Start:/local/templates/main/template_styles.css?177627807412010*/
/* Variables */
/* Base */
body {
  font-family: "Inter", sans-serif;
  background-color: #efefef;
  color: #212529;
  line-height: 1.6;
  margin: 0;
}

.urban {
  font-family: "Urbanist", sans-serif;
}

/* Decorative circle (background) */
.main-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30%;
  min-width: 250px;
  aspect-ratio: 1/1;
  background: #fff;
  border-radius: 50%;
  z-index: 1; /* below content */
}

/* Spline layer: needs mouse tracking; sits below header, below text/content that should be clickable */
spline-viewer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  pointer-events: auto;
}

/* Header (clickable, always on top) */
header {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 200; /* above spline */
  background-color: #333;
  box-sizing: border-box;
  border-radius: 30px;
  padding: 10px 10px;
  transform: translateX(-50%);
  margin: 30px auto 0;
  display: flex;
  align-items: center;
}
header a {
  padding: 5px 20px;
  font-weight: 300;
  font-size: 14px;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}
header a.active {
  border-radius: 30px;
}
header span {
  height: 14px;
  display: inline-block;
  width: 3px;
  border-radius: 4px;
  background: #ccc;
}

main.inner {
  margin-top: 100px;
}

/* First screen */
.promo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.promo .about {
  min-height: 100vh;
  width: 100%;
  max-width: 1024px;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  /* Prevent empty areas from intercepting events; enable them only on real content */
  pointer-events: none;
}
.promo .about section.hero {
  width: 50%;
  display: flex;
  box-sizing: border-box;
  pointer-events: none;
}
.promo .about section.hero .hero-content {
  position: relative;
  z-index: 150; /* above spline */
  max-width: 600px;
  pointer-events: none; /* text selectable, links/buttons clickable */
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.promo .about section.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.5rem 0;
}
.promo .about section.hero h2 {
  margin: 0.2rem 0 2rem 0;
}
.promo .about section.hero p {
  font-size: 1.1rem;
  margin: 0 0 2rem 0;
  color: #191919;
}
.promo .about section.hero .btn {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0.75rem 1.2rem;
  border-radius: 2rem;
  position: relative;
  z-index: 151;
  pointer-events: auto;
  color: #333;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.promo .about section.hero .btn::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: #e0e0e0;
  border-radius: 50%;
  z-index: -1;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.promo .about section.hero .btn:hover {
  transform: translateX(15px);
}
.promo .about section.hero .btn:hover::before {
  background: #333;
  transform: translateY(-50%) translateX(-15px);
}
.promo .about section.hero-no {
  width: 50%;
  display: flex;
}
.promo .about .links {
  margin-top: auto;
  font-size: 0.95rem;
  pointer-events: auto;
  position: absolute;
  bottom: 20px;
  z-index: 120;
}
.promo .about .links a {
  color: #333;
  text-decoration: none;
  margin: 0 0.5rem 0 0;
  line-height: 36px;
}
.promo .about .links span {
  color: #888;
  margin: 0 0.5rem 0 0;
}

.cases {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  /* Cases Section */
}
.cases section {
  min-height: 100vh;
  width: 100%;
  max-width: 1024px;
  padding: 0 16px;
}
.cases .cases-section {
  text-align: center;
  margin-bottom: 80px;
}
.cases .cases-section .section-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 3rem 0 0.5rem 0;
}
.cases .cases-section .section-subtitle {
  margin: 0.2rem 0 2rem 0;
}
.cases .cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
  gap: 30px;
  justify-content: center;
  margin-bottom: 60px;
}
.cases .cases-grid .case-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 30px;
  padding-bottom: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}
.cases .cases-grid .case-card .case-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 0;
  background-color: #fff;
  border-radius: 16px;
}
.cases .cases-grid .case-card .card-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-top: 0px;
  line-height: 1.4;
  margin-bottom: 10px;
  color: #333;
}
.cases .cases-grid .case-card .card-description {
  font-size: 1em;
  color: #666;
  line-height: 1.6;
  margin-top: 0;
}
.cases .cases-grid .case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.case {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  /* Cases Section */
}
.case section {
  min-height: 100vh;
  width: 100%;
  max-width: 1024px;
  padding: 0 16px;
}
.case .case-section {
  text-align: center;
  margin-bottom: 80px;
}
.case .case-section .case-icon {
  width: 48px;
  height: 48px;
  background-color: #fff;
  border-radius: 16px;
  margin: 3rem 0 0.5rem 0;
}
.case .case-section .section-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0rem 0 0.5rem 0;
}
.case .case-section .section-subtitle {
  margin: 0.2rem 0 2rem 0;
}
.case .case-section .case-detail {
  text-align: left;
}
.view-all-button {
  display: inline-block;
  background-color: #333;
  color: #eee;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 16px;
  font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.view-all-button span {
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.view-all-button:hover {
  background-color: #333;
  color: #eee;
}
.view-all-button:hover span {
  transform: translateX(5px);
}

@media (max-width: 767px) {
  spline-viewer {
    display: none;
  }
  main .about section.hero {
    width: 80% !important;
  }
  main .about section.hero-no {
    display: none !important;
  }
}
#logo {
  display: none;
}

/* Palette as CSS variables for runtime use */

/* ═══════════════════════════════════════════
   SOLUTIONS SECTION
═══════════════════════════════════════════ */
.solutions-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
}
.solutions-section .cases-section {
  width: 100%;
  max-width: 1024px;
  padding: 80px 16px 60px;
  text-align: center;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
  text-align: left;
}

.solution-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
}
.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
}

.solution-card-icon {
  font-size: 32px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.solution-card-body {
  flex: 1;
}

.solution-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #222;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.solution-card-desc {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  margin: 0 0 14px 0;
}

.solution-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.solution-card-tags span {
  font-size: 11px;
  font-weight: 600;
  background: #f0f0f0;
  color: #444;
  border-radius: 20px;
  padding: 3px 10px;
  letter-spacing: .02em;
}

.solution-card-arrow {
  font-size: 18px;
  color: #bbb;
  flex-shrink: 0;
  align-self: center;
  transition: transform .2s, color .2s;
}
.solution-card:hover .solution-card-arrow {
  transform: translateX(4px);
  color: #333;
}

/* ─── Solution detail pages ─── */
.solution-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}
.solution-page .solution-hero {
  text-align: center;
  margin-bottom: 64px;
}
.solution-page .solution-hero .badge {
  display: inline-block;
  background: #333;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.solution-page .solution-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px;
  color: #1a1a1a;
}
.solution-page .solution-hero p {
  font-size: 1.1rem;
  color: #555;
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.solution-page .solution-hero .hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Problem / Solution blocks */
.solution-block {
  margin-bottom: 64px;
}
.solution-block h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 24px;
}
.solution-block p {
  color: #555;
  line-height: 1.7;
  margin: 0 0 16px;
}

/* Feature cards grid */
.solution-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 64px;
}
.solution-feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,.07);
}
.solution-feature-card .feature-icon {
  font-size: 28px;
  margin-bottom: 12px;
}
.solution-feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #222;
  margin: 0 0 8px;
}
.solution-feature-card p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Steps */
.solution-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 64px;
  counter-reset: step-counter;
}
.solution-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid #eee;
}
.solution-step:last-child { border-bottom: none; }
.solution-step-num {
  width: 40px;
  height: 40px;
  background: #333;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.solution-step-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #222;
  margin: 0 0 6px;
}
.solution-step-text p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* CTA block */
.solution-cta {
  background: #222;
  color: #fff;
  border-radius: 24px;
  padding: 48px 36px;
  text-align: center;
}
.solution-cta h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 12px;
}
.solution-cta p {
  color: #aaa;
  margin: 0 0 28px;
  line-height: 1.6;
}
.solution-cta .view-all-button {
  background: #fff;
  color: #222;
}
.solution-cta .view-all-button:hover {
  background: #eee;
}

/* back link */
.solution-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #777;
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 40px;
  transition: color .2s;
}
.solution-back:hover { color: #333; }

@media (max-width: 767px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }
  .solution-page { padding-top: 100px; }
  .solution-page .solution-hero h1 { font-size: 2rem; }
}

/*# sourceMappingURL=styles.css.map */

/* End */
/* /local/templates/main/styles.css?17762824723024 */
/* /local/templates/main/template_styles.css?177627807412010 */
