@charset "UTF-8";
.staff, .plans {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}

html {
  background: #FFFFFF;
  font-size: 16px;
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  color: #374151;
  line-height: 1.6;
}

a {
  color: #2563EB;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: #1E40AF;
  text-decoration: none;
}

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

h1, h2, h3, h4, h5, h6 {
  color: #111827;
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: 2.5rem;
}
@media (min-width: 640px) {
  h1 {
    font-size: 3.5rem;
  }
}

h2 {
  font-size: 2rem;
}
@media (min-width: 640px) {
  h2 {
    font-size: 2.5rem;
  }
}

h3 {
  font-size: 1.5rem;
}
@media (min-width: 640px) {
  h3 {
    font-size: 1.75rem;
  }
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

p {
  margin-bottom: 1rem;
  font-size: 1.125rem;
  color: #374151;
  font-weight: 400;
}

strong {
  font-weight: 600;
  color: #111827;
}

.button, button, input[type=submit] {
  display: inline-block;
  background: #2563EB;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.button:hover, button:hover, input[type=submit]:hover {
  background: #1E40AF;
  transform: translateY(-1px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  color: #fff;
  text-decoration: none;
}
.button.alt, button.alt, input[type=submit].alt {
  background: #F43F5E;
}
.button.alt:hover, button.alt:hover, input[type=submit].alt:hover {
  background: #f10f36;
}
.button.outline, button.outline, input[type=submit].outline {
  background: transparent;
  border: 2px solid #2563EB;
  color: #2563EB;
  box-shadow: none;
}
.button.outline:hover, button.outline:hover, input[type=submit].outline:hover {
  background: #2563EB;
  color: #fff;
}

input[type=text], input[type=email], textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #E5E7EB;
  border-radius: 0.5rem;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}
input[type=text]:focus, input[type=email]:focus, textarea:focus {
  outline: none;
  border-color: #2563EB;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.hero {
  background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
  padding: 6rem 0 8rem;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  transform: rotate(30deg);
  pointer-events: none;
}
.hero h1 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
@media (min-width: 640px) {
  .hero h1 {
    font-size: 3.5rem;
  }
}
.hero h1 strong {
  color: #FFD700;
}
.hero .subtext {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}
.hero .cta {
  margin-top: 2rem;
}
.hero .cta .button {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.services-section {
  padding: 5rem 0;
  background: #F9FAFB;
}
.services-section .flex-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
@media (min-width: 640px) {
  .services-section .flex-row {
    grid-template-columns: repeat(3, 1fr);
  }
}
.services-section .service-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid transparent;
}
.services-section .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: rgba(37, 99, 235, 0.1);
}
.services-section .service-card h3 {
  color: #1E40AF;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.services-section .service-card p {
  color: #6B7280;
  font-size: 1rem;
  margin-bottom: 0;
}

.advantages-section {
  padding: 5rem 0;
  background: white;
}
.advantages-section .flex-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 3rem;
}
@media (min-width: 640px) {
  .advantages-section .flex-row {
    grid-template-columns: repeat(3, 1fr);
  }
}
.advantages-section .advantage-item {
  text-align: left;
  padding: 1rem;
}
.advantages-section .advantage-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
}
.advantages-section .advantage-item h3::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10B981;
  font-weight: bold;
}
.advantages-section .advantage-item p {
  color: #6B7280;
  font-size: 1rem;
}

.testimonial-section {
  padding: 5rem 0;
  background: #2563EB;
  background: linear-gradient(135deg, #1E40AF 0%, #2563EB 100%);
  color: white;
  text-align: center;
}
.testimonial-section .testimonial-block {
  max-width: 800px;
  margin: 0 auto;
}
.testimonial-section .square-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.2);
  margin: 0 auto 2rem;
  overflow: hidden;
}
.testimonial-section .square-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: static;
}
.testimonial-section blockquote {
  font-size: 1.5rem;
  line-height: 1.6;
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  quotes: none;
}
.testimonial-section blockquote::before {
  display: none;
}
.testimonial-section blockquote p {
  color: white;
  display: block;
  margin-bottom: 1.5rem;
}
.testimonial-section blockquote .author {
  font-size: 1.125rem;
  font-weight: 600;
  font-style: normal;
  color: rgba(255, 255, 255, 0.8);
  display: block;
}
.testimonial-section blockquote .author::before {
  content: "— ";
}

.bottom-cta-section {
  padding: 6rem 0;
  text-align: center;
  background: #F9FAFB;
}
.bottom-cta-section h2 {
  margin-bottom: 2rem;
  font-size: 2.25rem;
}
.bottom-cta-section .button {
  font-size: 1.25rem;
  padding: 1rem 3rem;
}

.container,
.text-container {
  margin: 0 auto;
  position: relative;
  padding: 0 1.5rem;
}

.text-container {
  max-width: 800px;
}

.container {
  max-width: 1200px;
}
.container.max-container {
  max-width: 100%;
  padding: 0;
}

.content {
  background: #fff;
  position: relative;
  min-height: 50vh;
}

.screenshot {
  max-width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-radius: 0.5rem;
  margin: 2rem auto;
}

section {
  padding: 4rem 0;
}
@media (min-width: 640px) {
  section {
    padding: 6rem 0;
  }
}

.page h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.subtext {
  margin-top: 1rem;
  text-align: center;
  font-size: 1.25rem;
  color: #6B7280;
  font-weight: 300;
}

.center-text {
  text-align: center;
}

.square-image {
  width: 200px;
  height: 200px;
  overflow: hidden;
  margin: 2rem auto;
  position: relative;
  border-radius: 50%;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.square-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editor-link {
  display: none;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
  justify-content: center;
  align-items: center;
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.modal-close {
  color: #fff;
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.3s ease;
}
.modal-close:hover {
  transform: scale(1.1);
}

.plans {
  -webkit-flex-flow: wrap;
  -moz-flex-flow: wrap;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  padding: 50px 0 30px 0;
}
.plans .plan {
  list-style: none;
  padding: 0;
  margin: 0 10px 50px 10px;
  text-align: center;
  border: 1px solid #eee;
  border-radius: 5px;
  box-shadow: 0px 0px 10px #eee;
  width: 100%;
}
.plans .plan .highlighted {
  font-size: 1.2em;
}
.plans .plan .pricing-cta {
  padding: 0;
}
.plans .plan .pricing-cta a {
  display: block;
  box-sizing: border-box;
  padding: 20px 0;
  border-radius: 0 0 2px 2px;
  border: 0;
}
@media (min-width: 1280px) {
  .plans .plan {
    -webkit-flex: 1;
    flex: 1;
  }
}
.plans .plan li {
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  padding: 20px 0;
}
.plans .plan li h3 {
  padding: 0;
  margin: 0;
  color: #fff;
  font-weight: normal;
}

.faq {
  color: #666;
}
@media (min-width: 1280px) {
  .faq {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
  }
}
.faq div {
  break-inside: avoid;
  padding: 25px 0;
}
.faq dt {
  font-weight: bold;
  margin: 0 0 5px 0;
}
.faq dd {
  padding: 0;
  margin: 0;
}

.staff {
  padding: 0;
  list-style: none;
  -webkit-flex-flow: wrap;
  -moz-flex-flow: wrap;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  text-align: center;
}
.staff li {
  padding: 30px 20px;
  box-sizing: border-box;
  width: 100%;
}
@media (min-width: 640px) {
  .staff li {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 45%;
    -moz-box-flex: 1;
    -moz-flex: 1 1 45%;
    -ms-flex: 1 1 45%;
    flex: 1 1 45%;
  }
}
@media (min-width: 1280px) {
  .staff li {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 29%;
    -moz-box-flex: 1;
    -moz-flex: 1 1 29%;
    -ms-flex: 1 1 29%;
    flex: 1 1 29%;
  }
}
.staff .square-image {
  display: inline-block;
  width: 250px;
  height: 250px;
}
.staff .square-image img {
  border-radius: 250px;
}
.staff .square-image:hover .image-text {
  display: block;
}
.staff .image-text {
  display: none;
  position: absolute;
  top: 80px;
  left: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 5px 10px;
  font-size: 14px;
}
.staff .name {
  font-size: 1.3em;
  margin-top: 20px;
}
.staff .position {
  color: #666;
}

.contact-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 900px;
  margin: 2rem auto 0;
}
.contact-box .contact-details {
  flex: 1;
  min-width: 280px;
  background: white;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #E5E7EB;
}
.contact-box .contact-details:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.contact-box .contact-details .image {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}
.contact-box .contact-details .image img {
  border-radius: 0.5rem;
  max-width: 200px;
  height: auto;
}
.contact-box .contact-details h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #111827;
}
.contact-box .contact-details h3 a {
  display: block;
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #2563EB;
}
.contact-box .contact-details h3 a:hover {
  color: #1E40AF;
  text-decoration: underline;
}

.blog-posts {
  list-style: none;
  padding: 0;
}
.blog-posts li {
  margin: 100px 0;
}

.blog-post .author {
  padding: 30px 0 0 0;
  border: 1px solid #eee;
  margin: 30px 0;
  font-size: 0.8em;
}
.blog-post .author .square-image {
  width: 250px;
  height: 250px;
  margin-top: 0;
}
.blog-post .author .blurb {
  text-align: center;
}
.blog-post h3 {
  margin: 0;
}
.blog-post h3 a {
  color: #000;
  text-decoration: none;
  font-weight: normal;
  font-size: 1.3em;
}
.blog-post h2 {
  text-align: left;
}
.blog-post .blog-navigation {
  font-size: 14px;
  display: block;
  width: auto;
  overflow: hidden;
}
.blog-post .blog-navigation a {
  display: block;
  width: 50%;
  float: left;
  margin: 1em 0;
}
.blog-post .blog-navigation .next {
  text-align: right;
}
.blog-post .post-details {
  border-bottom: 1px solid #eee;
  font-size: 0.9em;
}
.blog-post .post-details .blog-filter {
  display: inline-block;
  text-align: left;
}
.blog-post .post-details .blog-filter a {
  position: relative;
  top: -5px;
}
.blog-post .post-details a {
  text-decoration: none;
}
.blog-post .post-details .post-date {
  float: right;
}
.blog-post .post-details:after {
  content: "";
  display: table;
  clear: both;
}
.blog-post .post-content .button {
  margin: 30px 0 0 0;
}

.pagination {
  text-align: center;
}

.blog-filter {
  text-align: center;
}
.blog-filter a {
  background: #eee;
  padding: 3px 5px;
  font-size: 0.8em;
  border-radius: 5px;
  color: #888;
  transition: 0.2s ease-in-out;
}
.blog-filter a:hover {
  color: #555;
  text-decoration: none;
}

.blog-filter.cross a {
  padding-right: 8px;
}
.blog-filter.cross a:after {
  content: "x";
  font-size: 0.5em;
  position: relative;
  bottom: 4px;
  right: -3px;
}

.button a, input[type=submit] {
  color: #fff;
  text-decoration: none;
  padding: 10px 30px;
  background: #2563EB;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: 0.2s ease-in-out;
}

.button a:hover, input[type=submit]:hover {
  border: 1px solid #fff;
  background: #F43F5E;
  cursor: pointer;
}

.button.alt a {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 16px 50px;
}

.button.alt a:hover {
  background: #fff;
  color: #2563EB;
}

textarea, input, button, select {
  font-family: inherit;
  font-size: inherit;
}

input[type=submit] {
  margin: 20px 0 0 0;
}

label, input, textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
}

textarea {
  resize: vertical;
  height: 150px;
}

label {
  margin: 20px 0 5px 0;
}

input, textarea {
  padding: 10px;
  font-size: 1em;
}

input, textarea {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  outline: none;
  border: 1px solid #DDDDDD;
}

input[type=text]:focus, input[type=email]:focus, input[type=password]:focus, textarea:focus {
  box-shadow: 0 0 5px rgb(81, 203, 238);
  border: 1px solid rgb(81, 203, 238);
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
  transition: all 0.3s ease;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .company-name a {
  display: flex;
  align-items: center;
}
header .company-name img {
  height: 40px;
  width: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
nav a {
  color: #374151;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  position: relative;
}
nav a:not(.lang-switch a)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #2563EB;
  transition: width 0.3s;
}
nav a:hover {
  color: #2563EB;
}
nav a:hover:not(.lang-switch a)::after {
  width: 100%;
}
nav a.active {
  color: #2563EB;
  font-weight: 600;
}
nav a.highlight {
  background: #2563EB;
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
}
nav a.highlight:hover {
  background: #1E40AF;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
nav a.highlight:hover::after {
  display: none;
}
nav .lang-switch {
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 1px solid #E5E7EB;
  font-size: 0.875rem;
}
nav .lang-switch a {
  color: #6B7280;
  padding: 0 0.25rem;
}
nav .lang-switch a:hover, nav .lang-switch a.active-lang {
  color: #2563EB;
  font-weight: 600;
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    gap: 1rem;
  }
  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    width: 100%;
  }
  nav .lang-switch {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    border-top: 1px solid #E5E7EB;
    padding-top: 0.5rem;
    width: 100%;
    text-align: center;
  }
}
footer {
  background: #1F2937;
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem;
  font-size: 0.95rem;
}
footer .container {
  position: relative;
}
footer .footer-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) {
  footer .footer-columns {
    grid-template-columns: repeat(4, 1fr);
  }
}
footer .footer-links {
  padding: 0;
  margin: 0;
  list-style: none;
}
footer .footer-links li {
  margin-bottom: 0.75rem;
}
footer .footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}
footer .footer-links a:hover {
  color: white;
}
footer .footer-links a:hover svg {
  fill: white;
}
footer .footer-links a svg {
  width: 18px;
  height: 18px;
  fill: rgba(255, 255, 255, 0.7);
  margin-right: 0.5rem;
  transition: all 0.3s ease;
}
footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}
footer .copyright a {
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0.5rem;
}
footer .copyright a:hover {
  color: white;
}

.editor-link, .nav-open nav .editor-link {
  display: none;
  margin-top: 0;
}
.editor-link .btn, .nav-open nav .editor-link .btn {
  border: 0;
  border-radius: 2px;
  width: 100%;
  max-width: 500px;
  box-sizing: border-box;
  font-size: 2rem;
  text-decoration: none;
  padding: 10px 15px;
  margin: 0;
  font-size: 18px;
}
nav .editor-link, .editor-link .btn, nav .nav-open nav .editor-link, .nav-open nav .editor-link .btn {
  cursor: pointer;
  background-color: #f7e064;
  color: #333;
  box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.2);
}
nav .editor-link:hover, .editor-link .btn:hover, nav .nav-open nav .editor-link:hover, .nav-open nav .editor-link .btn:hover {
  background-color: #f4d525;
  color: #333;
}

.cms-editor-active .editor-link {
  display: block;
}

.cms-editor-active nav .editor-link {
  display: inline;
}

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