@charset "UTF-8";
:root {
  --ga-primary: #026bc3;
  --ga-primary-hover: #02579f;
  --ga-success: #44c55f;
  --ga-success-hover: #39b452;
  --ga-gradient-start: #667eea;
  --ga-gradient-end: #764ba2;
  --ga-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --ga-text: #2d3748;
  --ga-text-soft: #718096;
  --ga-bg: #f8f9fa;
  --ga-surface: #ffffff;
  --ga-border: #e2e8f0;
  --ga-danger: #e53935;
  --ga-warning: #ffbd2e;
  --ga-card-radius: 16px;
  --ga-radius-sm: 8px;
  --ga-pill: 50px;
  --ga-card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  --ga-card-shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.1);
  --ga-sidebar-width: 260px;
  --ga-topbar-height: 64px;
}

/* fallback */
@font-face {
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(/fonts/material-icons.woff2) format("woff2");
}
.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  /* Fix for CLS: Ensure icons have a fixed size and don't show text while loading */
  width: 1em;
  height: 1em;
  overflow: hidden;
  text-align: center;
  vertical-align: middle;
}

.delay-250 {
  animation-delay: 0.25s;
}

.delay-0-5, .delay-500 {
  animation-delay: 0.5s;
}

.delay-750 {
  animation-delay: 0.75s;
}

.delay-1, .delay-1000 {
  animation-delay: 1s;
}

.delay-1250 {
  animation-delay: 1.25s;
}

.delay-1500 {
  animation-delay: 1.5s;
}

.delay-1750 {
  animation-delay: 1.75s;
}

.delay-2000 {
  animation-delay: 2s;
}

@media (max-width: 480px) {
  .mobile-no-delay {
    animation-delay: 0s;
  }
  .mobile-no-animation {
    animation-duration: 0s !important;
  }
}
.delay-2, .delay-2000 {
  animation-delay: 2s;
}

.delay-2500 {
  animation-delay: 2.5s;
}

.delay-3 {
  animation-delay: 3s;
}

.delay-4 {
  animation-delay: 4s;
}

.delay-5 {
  animation-delay: 5s;
}

.delay-8 {
  animation-delay: 8s;
}

.delay-12 {
  animation-delay: 12s;
}

.delay-16 {
  animation-delay: 16s;
}

.delay-20 {
  animation-delay: 20s;
}

.delay-24 {
  animation-delay: 24s;
}

.duration-0 {
  animation-duration: 0.01s;
}

.duration-500 {
  animation-duration: 0.5s;
}

.duration-800 {
  animation-duration: 0.8s;
}

.duration-1000 {
  animation-duration: 1s;
}

.duration-1500 {
  animation-duration: 1.5s;
}

.duration-2000 {
  animation-duration: 2s;
}

.duration-2500 {
  animation-duration: 2.5s;
}

.duration-3000 {
  animation-duration: 3s;
}

.duration-4000 {
  animation-duration: 4s;
}

.duration-5000 {
  animation-duration: 5s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fade-in-up {
  animation-name: fadeInUp;
  animation-fill-mode: both;
  animation-iteration-count: 1;
}

@keyframes fadeInUpLcp {
  from {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fade-in-up-lcp {
  animation-name: fadeInUpLcp;
  animation-fill-mode: both;
  animation-iteration-count: 1;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fade-in-prepare {
  opacity: 0;
}

.fade-in-in {
  opacity: 0;
  animation-name: fadeIn;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}

@keyframes fadeInBounceUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  20% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  80% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fade-in-bounce-up {
  animation-name: fadeInBounceUp;
  animation-fill-mode: both;
  animation-iteration-count: 1;
}

@keyframes bounce {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}
.bounce {
  animation-name: bounce;
  transform: scale(0.9);
  animation-iteration-count: 10;
}

.bounce-up-hover {
  position: relative;
  transition: top 0.3s;
  top: 0 !important;
}

.bounce-up-hover:hover {
  top: -10px !important;
}

pre[class*=language-] {
  border-radius: 16px !important;
  margin: 25px 0 !important;
  transition: all 0.3s ease;
  line-height: 0;
}
pre[class*=language-]:hover {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2) !important;
  transform: translateY(-2px);
}
pre[class*=language-] > code {
  border-left: 4px solid #667eea !important;
  border-radius: 16px !important;
  background: linear-gradient(135deg, #f9f9f9 0%, #fdfdfd 100%) !important;
  padding: 25px !important;
  font-size: 15px !important;
  line-height: 1.8 !important;
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace !important;
  /* border: 0 !important; */
  box-shadow: none;
  margin-bottom: 0;
}
pre[class*=language-]::before, pre[class*=language-]::after {
  display: none !important;
}

.clients-modern :not(pre) > code[class*=language-] {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white !important;
  padding: 4px 10px !important;
  border-radius: 6px !important;
  font-size: 0.9em !important;
  border: none !important;
}

.clients-modern .section-header {
  margin-bottom: 60px;
}
.clients-modern .language-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-bottom: 60px;
  padding: 30px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
.clients-modern .language-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: white;
  border: 2px solid #ccc;
  border-radius: 50px;
  color: #222;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}
.clients-modern .language-chip:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
  border-color: #667eea;
  color: #667eea;
  background-color: #f8f9fa;
}
.clients-modern .language-chip.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}
.clients-modern .language-chip .material-icons {
  font-size: 20px;
}
.clients-modern .code-section {
  margin-bottom: 80px;
  scroll-margin-top: 100px;
}
.clients-modern .code-section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 3px solid #f0f0f0;
}
.clients-modern .code-section-header .language-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.clients-modern .code-section-header .language-icon .material-icons {
  color: white;
  font-size: 32px;
}
.clients-modern .code-section-header h2 {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
}
.clients-modern .code-description {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 25px;
  border-left: 4px solid #667eea;
}
.clients-modern .code-description p {
  margin: 0;
  color: #333;
  line-height: 1.8;
  font-size: 1.05rem;
}
.clients-modern .code-description a {
  color: #667eea;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}
.clients-modern .code-description a:hover {
  border-bottom-color: #667eea;
}
.clients-modern .contributions-section {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-top: 60px;
}
.clients-modern .contributions-section h2 {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  font-size: 1.8rem;
  color: #333;
}
.clients-modern .contributions-section h2 .material-icons {
  color: #667eea;
  font-size: 32px;
}
.clients-modern .contributions-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.clients-modern .contributions-section ul li {
  padding: 20px;
  margin-bottom: 15px;
  background: #f8f9fa;
  border-radius: 12px;
  border-left: 4px solid #667eea;
  transition: all 0.3s ease;
}
.clients-modern .contributions-section ul li:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.clients-modern .contributions-section ul li::before {
  content: "→";
  margin-right: 15px;
  color: #667eea;
  font-weight: bold;
  font-size: 1.2rem;
}
.clients-modern .contributions-section ul li a {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  word-break: break-all;
}
.clients-modern .contributions-section ul li a:hover {
  text-decoration: underline;
}
.clients-modern .contributions-section .contributions-note {
  margin-top: 30px;
  padding: 20px;
  background: #fff3cd;
  border-radius: 12px;
  border-left: 4px solid #ffc107;
  color: #664d03;
  font-style: italic;
}
.clients-modern .cta-section {
  text-align: center;
  margin-top: 80px;
  padding: 60px 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  color: white;
}
.clients-modern .cta-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: white;
}
.clients-modern .cta-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.95;
}
.clients-modern .cta-section .cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.clients-modern .cta-section .cta-buttons .btn-cta {
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.clients-modern .cta-section .cta-buttons .btn-cta.primary {
  background: white;
  color: #667eea;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.clients-modern .cta-section .cta-buttons .btn-cta.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
  background-color: #f8f9fa;
}
.clients-modern .cta-section .cta-buttons .btn-cta.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid white;
}
.clients-modern .cta-section .cta-buttons .btn-cta.secondary:hover {
  background: white;
  color: #667eea;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}
.clients-modern .cta-section .cta-buttons .btn-cta .material-icons {
  font-size: 24px;
}

@media (max-width: 768px) {
  .clients-modern .language-navigation {
    padding: 20px;
  }
  .clients-modern .language-chip {
    padding: 10px 18px;
    font-size: 0.9rem;
  }
  .clients-modern .code-section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .clients-modern .code-section-header h2 {
    font-size: 1.5rem;
  }
  .clients-modern .contributions-section {
    padding: 25px;
  }
  .clients-modern .contributions-section ul li:hover {
    transform: translateX(5px);
  }
  .clients-modern .cta-section {
    padding: 40px 20px;
  }
  .clients-modern .cta-section h2 {
    font-size: 1.5rem;
  }
  .clients-modern .cta-section p {
    font-size: 1rem;
  }
  .clients-modern .cta-section .cta-buttons {
    flex-direction: column;
  }
  .clients-modern .cta-section .cta-buttons .btn-cta {
    width: 100%;
    justify-content: center;
  }
}
.code-section {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
html {
  scroll-behavior: smooth;
}

.clients-modern-alt2 {
  padding: 80px 0;
}

.tabs-modern {
  margin: 50px 0;
  background: white;
  border-radius: 20px;
  padding: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow-x: auto;
}

.tabs-wrapper {
  display: flex;
  gap: 10px;
  min-width: max-content;
}

.modern-section .tab-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: transparent;
  border: 2px solid transparent;
  border-radius: 12px;
  color: #444;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.modern-section .tab-button:hover {
  background: #f0f2f5;
  color: #222;
  transform: translateY(-1px);
}
.modern-section .tab-button.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}
.modern-section .tab-button .material-icons {
  font-size: 20px;
}

.tabs-content-modern {
  margin-top: 40px;
}

.tab-content {
  animation: fadeIn 0.4s ease-in;
}
.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.tab-inner {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.tab-description {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 30px;
  border-left: 4px solid #667eea;
}
.tab-description h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 15px 0;
  color: #222;
  font-size: 1.3rem;
}
.tab-description h3 .material-icons {
  color: #667eea;
  font-size: 24px;
}
.tab-description p {
  color: #333;
  line-height: 1.8;
  margin-bottom: 20px;
}

.community-grid {
  margin-top: 80px;
  padding: 60px 0;
}
.community-grid h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 2rem;
  margin-bottom: 15px;
}
.community-grid h2 .material-icons {
  color: #667eea;
  font-size: 36px;
}

.community-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.community-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid transparent;
}
.community-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(102, 126, 234, 0.3);
}
.community-card h4 {
  margin: 0 0 10px 0;
  color: #222;
  font-size: 1.3rem;
}
.community-card p {
  color: #444;
  margin-bottom: 15px;
  line-height: 1.6;
}
.community-card a {
  color: #667eea;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 4px;
}
.community-card a:hover {
  color: #764ba2;
  background-color: rgba(102, 126, 234, 0.1);
  text-decoration: none;
}

.community-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.contributions-disclaimer {
  margin-top: 40px;
  color: #666;
  font-size: 0.95rem;
}

.bottom-cta {
  margin-top: 80px;
  padding: 60px 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  color: white;
}
.bottom-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: white;
}
.bottom-cta p {
  font-size: 1.2rem;
  opacity: 1;
}

@media (max-width: 768px) {
  .tabs-wrapper {
    flex-direction: column;
  }
  .tab-button {
    width: 100%;
    justify-content: center;
  }
  .tab-inner {
    padding: 20px;
  }
  .community-cards {
    grid-template-columns: 1fr;
  }
  .bottom-cta {
    padding: 40px 20px;
  }
  .bottom-cta h2 {
    font-size: 1.6rem;
  }
}
.modern-section .codeBlock {
  border: 0;
}
.modern-section .card {
  box-shadow: none;
}

.clients-modern-alt3 {
  padding: 80px 0;
}
.clients-modern-alt3 .section-header {
  margin-bottom: 60px;
}
.clients-modern-alt3 .section-header h1,
.clients-modern-alt3 .section-header h2 {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.clients-modern-alt3 .section-header .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
}
.clients-modern-alt3 .language-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 80px;
}
.clients-modern-alt3 .language-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  overflow: hidden;
  text-decoration: none;
  display: block;
  cursor: pointer;
}
.clients-modern-alt3 .language-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  transform: translateY(-6px);
}
.clients-modern-alt3 .language-card:hover .card-arrow .material-icons {
  transform: translateX(5px);
}
.clients-modern-alt3 .language-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 24px;
}
.clients-modern-alt3 .language-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.clients-modern-alt3 .language-card-icon .material-icons {
  font-size: 32px;
  color: white;
}
.clients-modern-alt3 .language-card-title {
  flex: 1;
}
.clients-modern-alt3 .language-card-title h3 {
  margin: 0 0 4px 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
}
.clients-modern-alt3 .language-card-title p {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
}
.clients-modern-alt3 .card-arrow {
  flex-shrink: 0;
}
.clients-modern-alt3 .card-arrow .material-icons {
  font-size: 28px;
  color: #667eea;
  transition: transform 0.3s ease;
}
.clients-modern-alt3 .code-sections-container {
  margin-bottom: 60px;
}
.clients-modern-alt3 .code-section-block {
  background: white;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  scroll-margin-top: 100px;
  transition: all 0.3s ease;
}
.clients-modern-alt3 .code-section-block.highlight-section {
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.5);
  animation: pulseHighlight 0.6s ease;
}
@keyframes pulseHighlight {
  0%, 100% {
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.5);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(102, 126, 234, 0.3);
  }
}
.clients-modern-alt3 .code-section-header-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 3px solid #f0f0f0;
  flex-wrap: wrap;
  gap: 15px;
}
.clients-modern-alt3 .code-section-header-block h2 {
  margin: 0;
  font-size: 2rem;
  color: #1a1a1a;
  font-weight: 700;
}
.clients-modern-alt3 .code-section-header-block .header-links-block {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.clients-modern-alt3 .btn-link-github,
.clients-modern-alt3 .btn-link-download,
.clients-modern-alt3 .btn-link-packagist,
.clients-modern-alt3 .btn-link-npm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.clients-modern-alt3 .btn-link-github .material-icons,
.clients-modern-alt3 .btn-link-download .material-icons,
.clients-modern-alt3 .btn-link-packagist .material-icons,
.clients-modern-alt3 .btn-link-npm .material-icons {
  font-size: 18px;
}
.clients-modern-alt3 .btn-link-github {
  background-color: #24292e;
  color: white;
}
.clients-modern-alt3 .btn-link-github:hover {
  background-color: #1a1e21;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(36, 41, 46, 0.4);
}
.clients-modern-alt3 .btn-link-download {
  background-color: #667eea;
  color: white;
}
.clients-modern-alt3 .btn-link-download:hover {
  background-color: #5568d3;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}
.clients-modern-alt3 .btn-link-packagist {
  background-color: #9955bb;
  color: white;
}
.clients-modern-alt3 .btn-link-packagist:hover {
  background-color: #7a4496;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(153, 85, 187, 0.4);
}
.clients-modern-alt3 .btn-link-npm {
  background-color: #cc3534;
  color: white;
}
.clients-modern-alt3 .btn-link-npm:hover {
  background-color: #a52a2a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(204, 53, 52, 0.4);
}
.clients-modern-alt3 .code-section-description {
  color: #444;
  line-height: 1.7;
  margin-bottom: 30px;
}
.clients-modern-alt3 .community-section-alt3 {
  background: white;
  border-radius: 20px;
  padding: 50px;
  margin-bottom: 60px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.clients-modern-alt3 .community-section-alt3 h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 2rem;
  color: #1a1a1a;
}
.clients-modern-alt3 .community-section-alt3 h2 .material-icons {
  font-size: 32px;
  color: #667eea;
}
.clients-modern-alt3 .community-list-alt3 {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 30px 0;
}
.clients-modern-alt3 .community-item-alt3 {
  display: flex;
  flex-direction: column;
  padding: 20px 24px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-left: 4px solid #667eea;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.clients-modern-alt3 .community-item-alt3:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-left-width: 6px;
}
.clients-modern-alt3 .community-item-alt3 strong {
  color: #1a1a1a;
  font-size: 1.1rem;
  margin-bottom: 5px;
}
.clients-modern-alt3 .community-item-alt3 span {
  color: #666;
  font-size: 0.95rem;
}
.clients-modern-alt3 .community-note {
  text-align: center;
  color: #888;
  font-size: 0.9rem;
  margin-top: 30px;
  font-style: italic;
}
.clients-modern-alt3 .cta-section-alt3 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  color: white;
}
.clients-modern-alt3 .cta-section-alt3 h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}
.clients-modern-alt3 .cta-section-alt3 p {
  font-size: 1.2rem;
  margin-bottom: 35px;
  opacity: 0.95;
}
.clients-modern-alt3 .cta-buttons-alt3 {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.clients-modern-alt3 .btn-cta-primary-alt3,
.clients-modern-alt3 .btn-cta-secondary-alt3 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.clients-modern-alt3 .btn-cta-primary-alt3 .material-icons,
.clients-modern-alt3 .btn-cta-secondary-alt3 .material-icons {
  font-size: 22px;
}
.clients-modern-alt3 .btn-cta-primary-alt3 {
  background: white;
  color: #667eea;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}
.clients-modern-alt3 .btn-cta-primary-alt3:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4);
  background: #f8f9fa;
}
.clients-modern-alt3 .btn-cta-secondary-alt3 {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid white;
}
.clients-modern-alt3 .btn-cta-secondary-alt3:hover {
  background: white;
  color: #667eea;
  transform: translateY(-3px);
}

@media screen {
  .color-ga {
    background-color: #026bc3 !important;
    color: #ffffff;
    border-radius: 50px !important;
    box-shadow: none !important;
  }
  .color-ga.inactive {
    background-color: rgba(217, 225, 229, 0) !important;
  }
  .color-ga:hover {
    color: #ffffff;
    background-color: #02579f !important;
    transition: background-color 0.5s;
  }
  .white-alice-blue {
    background-color: #f0f8ff !important;
  }
  .btn.white-alice-blue {
    border-radius: 50px;
  }
  @font-face {
    font-family: "Muli";
    font-style: normal;
    font-weight: 300 900;
    src: url("/fonts/mulish-latin.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
    font-display: swap;
    ascent-override: 100.5%;
    descent-override: 25%;
    line-gap-override: 0%;
  }
  @font-face {
    font-family: "Muli";
    font-style: normal;
    font-weight: 300 900;
    src: url("/fonts/mulish-latin-ext.woff2") format("woff2");
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
    font-display: swap;
    ascent-override: 100.5%;
    descent-override: 25%;
    line-gap-override: 0%;
  }
  @font-face {
    font-family: "Muli";
    font-style: italic;
    font-weight: 300 900;
    src: url("/fonts/mulish-italic-latin.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
    font-display: swap;
    ascent-override: 100.5%;
    descent-override: 25%;
    line-gap-override: 0%;
  }
  @font-face {
    font-family: "Muli";
    font-style: italic;
    font-weight: 300 900;
    src: url("/fonts/mulish-italic-latin-ext.woff2") format("woff2");
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
    font-display: swap;
    ascent-override: 100.5%;
    descent-override: 25%;
    line-gap-override: 0%;
  }
  html {
    position: relative;
    min-height: 100%;
    content: "";
  }
  a {
    text-overflow: ellipsis;
    word-wrap: break-word;
    color: #dbeff8;
    cursor: pointer;
  }
  a:hover {
    text-decoration: none;
    color: #b2d5f5;
  }
  a:enabled {
    text-decoration: none;
  }
  a:active {
    text-decoration: none;
  }
  a:focus {
    color: #b2d5f5;
  }
  p,
  .articleText,
  li {
    font-size: 17px;
  }
  td {
    text-overflow: ellipsis;
    word-wrap: break-word;
  }
  .print {
    display: none;
  }
  input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active {
    -webkit-box-shadow: inset 0 0 0 500px #f0f8ff !important;
  }
  input:-webkit-autofill + label {
    font-size: 0.8rem;
    -webkit-transform: translateY(-140%);
    transform: translateY(-140%);
  }
  .mainContent {
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  .pixel {
    height: 0;
    opacity: 0.001;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
  }
  footer.site-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #e2e8f0;
    color: #718096;
    padding: 56px 0 28px;
    font-size: 0.95rem;
  }
  footer.site-footer a {
    color: #718096;
    transition: color 0.15s ease;
  }
  footer.site-footer a:hover {
    color: #026bc3;
  }
  footer.site-footer .footer-top {
    display: grid;
    grid-template-columns: 1.5fr 3fr;
    gap: 40px 48px;
    padding-bottom: 40px;
  }
  footer.site-footer .footer-brand {
    max-width: 340px;
  }
  footer.site-footer .footer-logo {
    display: inline-block;
  }
  footer.site-footer .footer-logo img {
    height: 36px;
    width: auto;
  }
  footer.site-footer .footer-tagline {
    margin: 18px 0 22px;
    line-height: 1.65;
    font-size: 0.92rem;
    color: #718096;
  }
  footer.site-footer .footer-social .share-buttons {
    display: flex;
    gap: 12px;
    margin: 0;
  }
  footer.site-footer .footer-social .share-button {
    display: inline-flex;
  }
  footer.site-footer .footer-social .share-button img {
    width: 38px;
    height: 38px;
    transition: transform 0.15s ease;
  }
  footer.site-footer .footer-social .share-button:hover img {
    transform: translateY(-3px);
  }
  footer.site-footer .footer-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 20px;
  }
  footer.site-footer .footer-col-title {
    margin: 0 0 16px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #2d3748;
  }
  footer.site-footer .footer-col ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  footer.site-footer .footer-col li {
    margin: 0 0 11px;
  }
  footer.site-footer .footer-col a {
    font-size: 0.92rem;
    line-height: 1.4;
  }
  footer.site-footer .withdrawal-link {
    text-decoration: underline;
    text-decoration-color: #cbd5e0;
    text-underline-offset: 2px;
  }
  footer.site-footer .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px 28px;
    padding-top: 26px;
    border-top: 1px solid #e2e8f0;
    font-size: 0.85rem;
  }
  footer.site-footer .footer-bottom-left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 22px;
  }
  footer.site-footer .footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
  }
  footer.site-footer .footer-badges a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  footer.site-footer .footer-badges img {
    width: 26px;
    height: auto;
    border-radius: 2px;
  }
  footer.site-footer .footer-copy {
    color: #a0aec0;
  }
  footer.site-footer .footer-utility {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
  }
  .contentStretch {
    flex: 1 0 auto;
  }
  .lineThrough {
    text-decoration: line-through;
  }
  .fade-in {
    opacity: 0;
  }
  h1 {
    color: #ffffff;
    word-wrap: break-word;
    margin: 1em 0 0.5em;
    font-size: 40px;
  }
  h2 {
    color: #ffffff;
    word-wrap: break-word;
  }
  h3 {
    color: #ffffff;
    word-wrap: break-word;
    font-size: 1.4em;
  }
  /* Global input field focus styles */
  /* Main Modern Contact Page Styles */
  /* Material Design Shadow Depths */
  /* Note: z-depth-3 / mega-icon / gradient-card used in other components; removed here to avoid unused selector warnings in this view */
  /* Button Styles */
  /* FAQ CTA specific button styling: match contact page theme (gradient, white text) */
  /* Additional Information Section */
  /* Legal Information Section */
  /* Responsive Design */
  /* Override input field underline color to blue when active */
  /* Modern Blog Grid Design */
  /* Blog Grid Cards */
  /* Blog Pagination */
  /* Blog Detail Page Styles */
  /* Social Share Section */
  /* Action Buttons */
  /* Responsive Design */
}
@media screen and (min-width: 768px) {
  .api-docs .codeExample table .type {
    width: 130px;
    padding: 0 20px;
  }
  .api-docs .codeExample table .key {
    width: 140px;
    padding: 2px 20px;
  }
  .api-docs .codeExample table .description {
    padding: 0 20px;
  }
}
@media screen and (min-width: 1500px) {
  .unifiedApi .fLeft {
    max-width: 75%;
  }
}
@media screen {
  .btn-default {
    text-shadow: none;
    font-size: 0.9em;
  }
  p {
    margin: 0 0 10px;
  }
  p.last, p:last-child {
    margin-bottom: 0;
  }
  .underline {
    text-decoration: underline;
  }
  div.pricing {
    padding: 5em 0;
    background-color: #ffffff;
    background-image: linear-gradient(to top right, #ffffff 0%, rgba(3, 0, 126, 0.7) 61%);
    position: relative;
    overflow: hidden;
  }
  div.pricing h2 {
    font-size: 2.1em;
    margin: 0 0 1.2em;
  }
  .pricing-partial-container {
    min-height: 760px;
    transition: all 1s;
  }
  textarea {
    resize: vertical;
  }
  .profilePicture {
    width: 32px;
    height: 32px;
    border-radius: 16px;
    margin-right: 5px;
    margin-left: 5px;
  }
  .login-label {
    margin: 0 5px;
  }
  .btn-file input[type=file] {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 100%;
    min-height: 100%;
    font-size: 100px;
    text-align: right;
    filter: alpha(opacity=0);
    opacity: 0;
    outline: none;
    background: #ffffff;
    cursor: inherit;
    display: block;
  }
  .btn-full-width {
    width: 100%;
  }
  .btn-ga-inline {
    font-size: 16px;
    padding: 10px;
    width: inherit;
    margin: 0;
    color: #ffffff;
  }
  .btn-ga[disabled] {
    background-color: #44c55f;
    color: #ffffff;
    border: 1px solid #44c55f;
  }
  .btn-file[disabled] {
    background-color: #44c55f;
    color: #ffffff;
    border: 1px solid #44c55f;
  }
  #react-sign-in-form {
    min-height: 340px;
  }
  .btn-success,
  .fontBlack a.btn-success {
    background-color: #44c55f;
    width: 100%;
    border-color: #44c55f;
    color: #ffffff;
    font-size: 1.2em;
    border-radius: 30px;
    box-shadow: none;
  }
  .btn-success.auto,
  .fontBlack a.btn-success.auto {
    width: auto;
  }
  .btn-success:hover, .btn-success:active, .btn-success:focus,
  .fontBlack a.btn-success:hover,
  .fontBlack a.btn-success:active,
  .fontBlack a.btn-success:focus {
    color: #ffffff;
    background-color: #39b452;
    transition: background-color 0.5s;
    box-shadow: none;
  }
  .btn-success.auto-height,
  .fontBlack a.btn-success.auto-height {
    height: auto;
  }
  .btn-sign-up {
    font-size: 1.5em;
    max-width: 362px;
    margin: 0;
    padding: 0.8em;
    height: auto;
    line-height: 1.2em;
  }
  .sign-up-now {
    margin-top: 25px;
  }
  .about-us .sign-up-now {
    margin-top: 0;
  }
  .btn-success[disabled] {
    color: #ffffff;
    background-color: #39b452;
    filter: progid:dximagetransform.microsoft.gradient(startcolorstr="$color_lima", endcolorstr="$color_lima", gradienttype=0);
  }
  .btn.auto-height {
    line-height: 1.3;
    padding-top: 0.7em;
    padding-bottom: 0.7em;
  }
  .background-image {
    min-height: 450px;
    background-size: cover;
    color: #ffffff;
    padding-top: 50px;
    font-size: 130%;
    font-weight: bold;
  }
  .blog .container .blogDetail {
    margin-top: 50px;
  }
  .blog .container .blogDetail h1 {
    margin: 40px 0;
    font-size: 1.9em;
  }
  .blog .container ul {
    position: relative;
  }
  .blog .container ul li {
    list-style: disc;
    margin-left: 20px;
  }
  .blog .container ol {
    margin-top: 0;
  }
  .blog .container ol li {
    list-style-position: inside;
    margin-bottom: 5px;
  }
  .blog .container code {
    display: inline-block !important;
    padding: 5px !important;
    font-size: 15px;
    margin: 8px 0;
  }
  .blog .container h3 {
    font-size: 1em;
    font-weight: bold;
    margin: 12px 0 9px;
  }
  .blog .container .date {
    float: right;
    font-size: 15px;
  }
  .blog .container .text {
    font-size: 18px;
    line-height: 28px;
  }
  .blog .container p {
    margin: 0 0 25px;
  }
  .blog .container .text a {
    border-bottom: 3px solid #026bc3;
    color: #525b63;
  }
  .blog .container pre {
    margin: 14px 0;
  }
  .blog .container .social-buttons {
    margin-top: 20px;
  }
  .blog .container .blog-navigation {
    margin: 0 30px 0 0;
  }
  .blog .container .blog-image {
    float: left;
    max-width: 540px;
    width: 100%;
    margin: 5px 30px 20px 0;
  }
  .blog .container .blog-image figcaption {
    color: #ffffff;
    font-size: 0.7em;
  }
  .blog .container .blog-image img {
    width: 100%;
  }
  .youtube-video {
    float: left;
    width: 568px;
    max-width: 100%;
    max-height: 321px;
    margin: 5px 20px 20px 0;
    line-height: 0;
  }
  .youtube-video iframe {
    border: 0;
    width: 100% !important;
  }
  pre {
    background-color: #f5f5f5;
    border-radius: 4px;
    font-size: 14px;
    padding: 9px;
    color: #2f739a;
    overflow-x: auto;
  }
  div.code {
    background-color: #ffffff;
    border-radius: 4px;
  }
  div.registration-form {
    background-color: #026bc3;
    background-image: linear-gradient(to top right, #1775c2 0%, rgba(24, 117, 197, 0) 61%);
    position: relative;
    padding-bottom: 5em;
    padding-top: 5em;
    overflow: hidden;
  }
  div.registration-form .section-header {
    margin-bottom: 50px;
  }
  div.registration-form .section-header h2 {
    color: #ffffff;
  }
  div.registration-form .section-header .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 1em auto 0;
  }
  div.registration-form .integration-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
  }
  div.registration-form .integration-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
  }
  div.registration-form .integration-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  }
  div.registration-form .integration-card:hover .card-link .material-icons {
    transform: translateX(5px);
  }
  div.registration-form .integration-card .integration-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
  }
  div.registration-form .integration-card .integration-card-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
  }
  div.registration-form .integration-card .integration-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  div.registration-form .integration-card .integration-card-icon .material-icons {
    font-size: 32px;
    color: #ffffff;
  }
  div.registration-form .integration-card .integration-card-media {
    width: 100%;
    margin-bottom: 24px;
  }
  div.registration-form .integration-card .integration-card-media img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }
  div.registration-form .integration-card p {
    margin: 0 0 16px;
    line-height: 1.6;
    text-align: left;
    color: #2d3748;
  }
  div.registration-form .integration-card .feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
  }
  div.registration-form .integration-card .feature-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #2d3748;
  }
  div.registration-form .integration-card .feature-list li::before {
    content: "check";
    font-family: "Material Icons";
    font-weight: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: "liga";
    font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
    position: absolute;
    left: 0;
    color: #026bc3;
  }
  div.registration-form .integration-card .card-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: #026bc3;
  }
  div.registration-form .integration-card .card-link .material-icons {
    transition: transform 0.3s ease;
  }
  div.registration-form h2 {
    margin: 0;
    font-size: 2.1em;
  }
  div.how-it-works {
    padding-bottom: 5em;
    padding-top: 5em;
    overflow: hidden;
  }
  div.how-it-works .exampleContainer {
    max-width: 100%;
  }
  div.how-it-works .exampleContainer.process {
    margin: 90px 5% 0;
  }
  div.how-it-works .exampleContainer.process strong {
    color: #3e88c3;
  }
  div.how-it-works .exampleContainer.process img {
    opacity: 0.5;
  }
  div.how-it-works .exampleContainer.right {
    float: right;
  }
  div.how-it-works .logo {
    margin: 15px 0;
  }
  div.how-it-works .description-text {
    position: absolute;
    text-align: center;
    width: 100%;
    line-height: 1.1em;
    padding: 0 15px;
    font-size: 1.1em;
  }
  div.how-it-works .description-text.top {
    top: 14%;
  }
  div.how-it-works .description-text.bottom {
    bottom: 22%;
  }
  div.how-it-works h3 {
    margin: 1.8em 0 0.7em;
    font-size: 1.5em;
  }
  div.how-it-works .exampleBox {
    border-radius: 3px;
    max-width: 800px;
    box-shadow: 10px 10px 13px -7px rgba(0, 0, 0, 0.1);
    display: inline-block;
    padding: 20px;
    border: 1px solid #ddd;
    width: 100%;
  }
  div.how-it-works .exampleBox img {
    max-width: 100%;
  }
  div.how-it-works h2 {
    margin: 0;
    font-size: 2.1em;
  }
  div.how-it-works img.process {
    max-width: 100%;
  }
  div.integration {
    padding-bottom: 5em;
    padding-top: 5em;
    overflow: hidden;
  }
  div.integration h2 {
    margin: 0;
    font-size: 2.1em;
    margin-bottom: 0.5em;
  }
  div.about {
    padding-bottom: 5em;
    padding-top: 5em;
    overflow: hidden;
    background: #0f5378;
    background: linear-gradient(0deg, #70bfff 0, #0f5378 85%, #0f5378 100%);
  }
  div.about h2 {
    margin: 0;
    font-size: 2.1em;
  }
  div.about .btn-white {
    margin-top: 20px;
    font-size: 0.8em;
  }
  div.clients .contributions {
    font-size: 1.3em;
    padding: 20px;
  }
  div.clients .contributions li {
    margin: 10px 0;
  }
  div.clients h2 {
    margin: 0;
    font-size: 2.1em;
  }
  div.codeBox h2 {
    font-size: 1.6em;
    padding: 0 0 20px 0;
    margin: 0;
    color: #525b63;
  }
  div.codeBox h3 {
    color: #525b63;
  }
  div.blog h2 {
    margin: 0;
    font-size: 1.9em;
    margin-bottom: 30px;
    margin-top: 5px;
  }
  div.api-docs h2 {
    margin: 0;
    font-size: 2.1em;
  }
  .valign-top {
    vertical-align: top;
  }
  .valign-bottom {
    vertical-align: bottom;
  }
  .valign-middle {
    vertical-align: middle;
  }
  .containerLeft {
    max-width: 100%;
  }
  .containerRight {
    max-width: 100%;
  }
  .privateKey {
    color: rgb(48, 145, 148);
  }
  input.testdrive {
    margin: 1em 1em 0 0;
    padding: 0.5em;
    font-size: 1.5em;
    border-radius: 5px;
    border: 0;
    background-color: rgba(51, 161, 226, 0.06);
    width: 100%;
    float: left;
  }
  input.error {
    background-color: rgb(255, 238, 229);
  }
  input:-webkit-autofill {
    transition: background-color 1000s ease-in-out 0s;
  }
  input:-webkit-autofill:hover {
    transition: background-color 1000s ease-in-out 0s;
  }
  input:-webkit-autofill:focus {
    transition: background-color 1000s ease-in-out 0s;
  }
  input:-webkit-autofill:active {
    transition: background-color 1000s ease-in-out 0s;
  }
  .contact form,
  .contact .form {
    max-width: 700px;
  }
  .contact textarea {
    color: #222222;
  }
  .contact h2 {
    font-size: 1.9em;
  }
  .contact .headline {
    text-align: center;
    font-size: 1.4em;
  }
  .login form,
  .login .register {
    max-width: 500px;
    width: 100%;
    float: left;
  }
  .login .btn-success {
    margin: 15px 0;
  }
  .login .password_forgotten {
    padding-top: 2em;
  }
  .login .password_forgotten a {
    font-size: 1.2em;
  }
  .login h2 {
    font-size: 3em;
  }
  .passwordForgotten .btn-success {
    margin: 15px 0;
  }
  .account.overview .whiteShadowBox {
    margin: 30px 0;
  }
  .account.overview form {
    max-width: 500px;
  }
  .account.overview table.clientKey {
    width: 100%;
    max-width: 1000px;
    background-color: rgba(255, 255, 255, 0.18);
    border-radius: 4px;
    margin-bottom: 10px;
  }
  .account.overview table.clientKey td {
    padding: 6px 10px;
  }
  .account.overview table.clientKey .close {
    display: inline-block;
    margin-top: 3px;
  }
  .account.overview table.clientKey .keyType {
    width: 25%;
    padding-right: 2%;
  }
  .account.overview table.clientKey .key {
    width: 33%;
    padding-right: 2%;
    word-break: break-all;
  }
  .account.overview table.clientKey .amount {
    width: 42%;
    word-break: break-all;
  }
  .account.overview table.clientKey .clientId {
    width: 42%;
    word-break: break-all;
  }
  .account.invoices label {
    margin-right: 10px;
  }
  .account.invoices .btn-flat i {
    line-height: 3rem;
  }
  .account.invoices .invoice-icon {
    line-height: 4rem;
    font-size: 2rem;
  }
  .account h2 {
    margin: 1em 0;
    font-size: 3rem;
  }
  .account .modifyAccount input[name=newsletter] {
    float: left;
    margin-right: 10px;
  }
  .account .modifyAccount .btn-success {
    margin-top: 15px;
  }
  .account .confirm-email .btnReturn {
    margin-top: 50px;
    max-width: 200px;
  }
  .background-blue {
    padding: 5em 0;
    position: relative;
    overflow: hidden;
    background-color: #026bc3;
    background-image: linear-gradient(to top right, #1775c2 0%, rgba(24, 117, 197, 0) 61%);
  }
  .background-blue h2 {
    margin: 0;
    font-size: 2.1em;
    margin-bottom: 0.5em;
  }
  .alert-buy-requests {
    border: 0;
    background-color: #70bde9;
    color: #ffffff;
    margin-top: 20px;
    font-size: 1.2em;
    display: none;
  }
  article {
    position: relative;
    background-color: white;
    padding: 20px 25px;
    margin: 20px 0;
    border-radius: 4px;
  }
  .anchor {
    width: 1px;
    height: 1px;
    top: -100px;
    position: relative;
    overflow: hidden;
    opacity: 0.001;
    left: -2000px;
    display: block;
  }
  .uppercase {
    text-transform: uppercase;
  }
  .capitalize {
    text-transform: capitalize;
  }
  .register {
    max-width: 1000px;
  }
  .register img {
    max-width: 100%;
    border-radius: 6px;
  }
  .register.password-forgotten .email-field,
  .register.password-forgotten label[for=newsletter],
  .register.password-forgotten .sidebar {
    display: none;
  }
  .register hr.sign-up {
    border: 1px solid #d5d5d5;
    margin-bottom: 20px;
    border-bottom: 0;
  }
  .register .button-container {
    margin: 30px 0;
  }
  .register #react-sign-up-form {
    margin-top: -18px;
  }
  .register .or {
    top: -33px;
    position: relative;
    background-color: #f5f5f5;
    display: inline-block;
    padding: 0 20px;
  }
  .register .star-icon {
    width: 100%;
    text-align: center;
    color: #ffcc00;
    font-size: 2em;
    position: relative;
  }
  .register .key-facts li {
    text-align: center;
    font-weight: bold;
    margin: 20px 20px 10px;
  }
  .register .g-recaptcha {
    float: right;
    margin: 10px 0 20px;
  }
  .register .form_element.country {
    width: 30%;
    float: left;
    padding-right: 20px;
  }
  .register .form_element.postalcode {
    width: 35%;
    float: left;
    padding-right: 20px;
  }
  .register .form_element.city {
    width: 35%;
    float: left;
  }
  .highlight-box {
    padding: 20px 10px;
    border-bottom: 1px solid #eee;
  }
  .btn.with-spacer {
    margin-right: 10px;
    margin-bottom: 10px;
  }
  .legalContainer {
    display: inline-block;
    margin: 0 0 15px;
  }
  .legalContainer label {
    color: #525b63;
  }
  .legalContainer a {
    color: #777777;
  }
  .oh {
    overflow: hidden;
  }
  .btn-big {
    margin: 1.7em 0;
    padding: 0.4em;
    height: auto;
    line-height: 1.4em;
  }
  table.list {
    border: 1px solid rgba(255, 255, 255, 0.3);
    min-width: 100px;
    width: 50%;
  }
  table.list.full {
    width: 100%;
  }
  table.list .min-width-12 {
    width: 12%;
  }
  table.list th {
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 6px 8px;
  }
  table.list td {
    padding: 6px 8px;
  }
  table.list tr:nth-child(odd) {
    background: rgba(255, 255, 255, 0.3);
  }
  .separator-100 {
    height: 100px;
  }
  .separator-80 {
    height: 80px;
  }
  .separator-50 {
    height: 50px;
  }
  .separator-25 {
    height: 50px;
  }
  .separator-25r {
    height: 25px;
  }
  .separator-10 {
    height: 10px;
  }
  .terms-of-use h2 {
    font-size: 17px;
    font-weight: bold;
  }
  .terms-of-use p {
    font-size: 16px;
  }
  input[type=text] {
    color: #222222;
  }
  input[type=password] {
    color: #222222;
  }
  input[type=email] {
    color: #222222;
  }
  .form-control {
    color: #222222;
  }
  .dot {
    margin: 0 10px;
  }
  [type=radio]:checked + label::after,
  [type=radio].with-gap:checked + label::after {
    background-color: #026bc3 !important;
  }
  [type=radio]:checked + label::after,
  [type=radio].with-gap:checked + label::before,
  [type=radio].with-gap:checked + label::after {
    border: 2px solid #026bc3 !important;
  }
  .fontBlack {
    color: #525b63;
  }
  .fontBlack p {
    color: #525b63;
  }
  .fontBlack h1 {
    color: #2f739a;
  }
  .fontBlack h2 {
    color: #2f739a;
  }
  .fontBlack h3 {
    color: #525b63;
  }
  .fontBlack a {
    color: #01073f;
  }
  .modal {
    color: black;
    max-width: 500px;
    padding: 20px;
    border-radius: 2px;
    max-height: 85%;
  }
  .modal h3 {
    font-size: 1.2em;
    color: #444444;
  }
  label {
    line-height: 1.1rem;
  }
  .smallError {
    margin-bottom: 10px;
  }
  .smallError div.error {
    top: -0.9rem;
  }
  div.errorContainer div.error {
    position: relative;
    left: 0;
    font-size: 0.9rem;
    line-height: 0.8rem;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
  }
  div.error,
  div.error_message {
    color: #F44336;
  }
  .input-field label {
    pointer-events: all;
  }
  .center {
    text-align: center;
  }
  .highlight {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 3px 4px;
    border-radius: 3px;
  }
  .codeBox a {
    color: #155286;
  }
  .codeBox .btn-lg {
    font-size: 17px;
  }
  .codeBox div.card-content div {
    font-size: 16px;
  }
  .social {
    margin-bottom: 25px;
  }
  .social-recommend {
    margin-bottom: 7px;
  }
  .codeBlock {
    padding: 0 1em !important;
    font-weight: normal;
    word-wrap: break-word;
    border: 1px solid rgba(51, 161, 226, 0.06);
    color: #444444;
  }
  .codeBlock p.last,
  .codeBlock p:last-child {
    margin-bottom: 25px;
  }
  .codeBlock span {
    color: #444444;
  }
  .hidden,
  .show-dark-mode {
    display: none;
  }
  .backdrop {
    background-color: #007adc;
  }
  body {
    color: white;
    font-family: "Muli", sans-serif;
    overflow-anchor: none;
  }
  body.blog {
    background-color: #026bc3;
  }
  body.account {
    background-color: #026bc3;
    background-image: linear-gradient(to top right, #1775c2 0%, rgba(24, 117, 197, 0) 61%);
  }
  body.tracking {
    background-color: #026bc3;
  }
  body.jqueryPlugin {
    background-color: #026bc3;
  }
  body.admin {
    background-color: #026bc3;
  }
  body.contact {
    background-color: #026bc3;
  }
  body.photo-credits {
    background-color: #026bc3;
  }
  body.privacyPolicy {
    background-color: #026bc3;
  }
  body.termsOfUse {
    background-color: #026bc3;
  }
  body.maintenance {
    background-color: #729bbe;
  }
  body.maintenance .navbar-nav {
    display: none;
  }
  body.faq {
    background-color: #026bc3;
  }
  body.customer-satisfaction {
    background: linear-gradient(-60deg, #55d5c3, #026bc3, #23D5AB, #23A6D5);
  }
  .relative {
    position: relative;
  }
  .nav-icon {
    vertical-align: middle;
    margin-right: 5px;
  }
  .inline-icon {
    vertical-align: middle;
    margin-right: 2px;
    display: inline-block !important;
  }
  .toast {
    min-width: 300px;
    max-width: 440px;
    padding: 14px 14px 14px 18px;
    border-radius: var(--ga-card-radius, 16px);
    background-color: var(--ga-surface, #ffffff);
    color: var(--ga-text, #2d3748);
    border: 1px solid var(--ga-border, #e2e8f0);
    box-shadow: var(--ga-card-shadow-hover, 0 20px 40px rgba(0, 0, 0, 0.1));
    font-weight: 400;
  }
  .toast .ga-toast {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
  }
  .toast .ga-toast__body {
    flex: 1 1 auto;
    min-width: 0;
  }
  .toast .ga-toast__title {
    margin-bottom: 2px;
    font-weight: 700;
    color: var(--ga-text, #2d3748);
  }
  .toast .ga-toast__message {
    color: var(--ga-text-soft, #718096);
    line-height: 1.5;
  }
  .toast .ga-toast__close {
    margin: -4px -4px 0 0;
  }
  .block {
    margin-top: 1rem;
    margin-bottom: 2rem;
    overflow: hidden;
    position: relative;
  }
  .faq h2 {
    font-size: 1.9em;
    margin-top: 0;
  }
  .faq .faqImage {
    margin: 20px 0;
    width: 90%;
    display: block;
  }
  .faq .certificate-of-residence {
    max-width: 300px;
  }
  .faq .block {
    margin: 2em 0;
  }
  .faq .faqExcel {
    max-width: 550px;
    margin-top: 10px;
    width: 100%;
    height: auto;
  }
  .countryContainer {
    width: 100%;
  }
  .countryContainer .id {
    float: left;
    width: 50px;
  }
  .countryContainer .shortcut {
    float: left;
    width: 100px;
  }
  .countryContainer .name {
    float: left;
    width: 200px;
  }
}
@media screen and (min-width: 992px) {
  .containerRight {
    float: right;
  }
  div.how-it-works .exampleContainer {
    float: left;
    width: 30%;
  }
  .countryContainer {
    float: left;
    width: 33%;
  }
  .containerLeft {
    float: left;
    max-width: 420px;
  }
  input.testdrive {
    font-size: 16pt;
    line-height: 35px;
  }
  .jquery-plugin input {
    font-size: 16pt;
  }
}
@media screen {
  #euCookieSettings {
    background-color: white;
    position: fixed;
    left: 50%;
    padding: 30px;
    border-radius: 8px;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 1001;
    max-height: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
    width: 800px;
    max-width: 100%;
    min-width: 300px;
  }
  #euCookieSettings table {
    margin-bottom: 20px;
  }
  #euCookieSettings table td,
  #euCookieSettings table th {
    padding: 0;
    font-size: 0.9em;
  }
  #euCookieSettings label {
    color: #5f5f5f;
    font-size: 1.1rem;
    line-height: 1.2rem;
    margin-bottom: 15px;
    display: inline;
  }
  #euCookieSettings h3 {
    margin: 0;
  }
  #euCookieSettings p {
    font-size: 0.9em;
  }
  #euCookieSettings .description {
    font-size: 0.8em;
    display: block;
    line-height: 1.2em;
  }
  #euCookie h3,
  #euCookieSettings h3 {
    margin: 0.2em 0 0.4em;
  }
  #euCookie .minor-action,
  #euCookieSettings .minor-action {
    color: #616468;
    margin: 10px 15px 0 0;
    display: inline-block;
    font-size: 1em;
    text-decoration: underline;
  }
  #euCookie a.customize,
  #euCookieSettings a.customize {
    padding: 4px 0;
    color: #616468;
    text-decoration: underline;
  }
  #euCookie a.cookieButton,
  #euCookieSettings a.cookieButton {
    display: inline-block;
    background-color: #026bc3;
    color: #ffffff;
    margin: 10px 0 2px 10px;
    padding: 4px 15px;
    border-radius: 3px;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
  }
  #euCookie a.cookieButton.deny,
  #euCookieSettings a.cookieButton.deny {
    background-color: #ffffff;
    color: #616468;
  }
  #euCookie a.cookieButton:hover,
  #euCookieSettings a.cookieButton:hover {
    opacity: 0.95;
  }
  #euCookie {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    z-index: 1000;
    max-height: 100%;
    overflow-x: scroll;
  }
  #euCookie .inner {
    background-color: #fafafa;
    margin: 0 auto;
    box-sizing: border-box;
    font-size: 0.9em;
    padding: 25px 70px 25px 30px;
    width: 100%;
  }
  #euCookie .innerText {
    margin: 5px 0;
  }
  .contact-form textarea {
    padding: 0.8rem 0 0.5rem 0;
  }
  .contact-form .character-counter {
    display: none;
  }
  .contact-form input[type=email]:not(.browser-default).invalid + label:after,
  .contact-form input[type=email]:not(.browser-default):focus.invalid + label:after {
    margin-top: 9px;
    font-size: 1.2em;
  }
  .contact-form div.error {
    font-size: 16px;
  }
  .contact-form .input-field {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .contact-form .input-field label {
    font-size: 1.1rem;
    left: 0;
  }
  .contact-form .row-success {
    background-color: #02579f;
    border-radius: 7px;
    color: white;
  }
  .contact-form .row-success .headline {
    text-align: left;
  }
  .contact-form .row-success i {
    margin-top: 15px;
    font-size: 4rem;
  }
  .whiteShadowBox {
    background-color: #ffffff;
    border-radius: 3px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    width: 100%;
    padding: 20px;
  }
  .whiteShadowBox h2 {
    margin: 0;
    font-size: 2.1em;
  }
  .keyExample {
    font-size: 1em;
  }
  .faqDetail {
    margin: 2em auto;
  }
  .faqDetail h1 {
    font-size: 40px;
    margin-bottom: 20px;
  }
  code {
    padding: 10px !important;
    margin: 10px 0;
    position: relative;
    top: 10px;
  }
  code .token.property {
    color: #2f739a;
  }
  code .token.string,
  code .token.tag,
  code .token.boolean,
  code .token.number,
  code .token.function-name,
  code .token.constant,
  code .token.symbol,
  code .token.deleted {
    color: #19b5c1;
  }
  code.http {
    font-weight: bold;
  }
  .bill table {
    width: 100%;
  }
  .bill table tr.spacer td {
    padding: 10px 0;
    border-top: 1px dotted #cccccc;
  }
  .bill form input[name=pdf] {
    width: 82px;
    float: left;
  }
  .numeration {
    background-color: #007adc;
    color: #ffffff;
    border-radius: 22px;
    display: inline-block;
    width: 44px;
    text-align: center;
    height: 44px;
    padding: 10px 0;
    font-size: 27px;
    margin-right: 20px;
  }
  .bold {
    font-weight: bold;
  }
  .loader {
    display: none;
  }
  .right,
  .fRight {
    float: right;
  }
  .left,
  .fLeft {
    float: left;
  }
  .break-all {
    word-break: break-all;
  }
  .arrow:after {
    bottom: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
  }
  .arrow:before {
    bottom: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-bottom-color: #ffffff;
    border-width: 8px;
    margin-left: -8px;
  }
  .notice {
    border: 1px solid rgba(255, 255, 255, 0.52);
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
  }
  ul.bullets {
    padding-left: 25px;
  }
  ul.bullets li {
    list-style-type: circle;
    list-style-position: outside;
  }
}
@media screen and (min-width: 1100px) {
  .login .register {
    width: 370px;
    float: right;
  }
  .login .register .separator-25 {
    display: none;
  }
}
@media screen and (min-width: 1000px) {
  #euCookie .inner {
    display: inline-block;
    padding: 8px 30px;
  }
  #euCookie .innerText {
    display: inline-block;
    max-width: 69%;
    text-align: left;
  }
  #euCookie .innerText .h3 {
    font-size: 1.2em;
  }
  #euCookie a.cookieButton {
    padding: 8px 12px;
  }
  #euCookie .actions {
    float: right;
    margin-right: 50px;
    width: 20%;
    text-align: left;
    margin-top: 3px;
  }
  #disqus_thread {
    margin-left: 10%;
    margin-right: 10%;
  }
  .pixel {
    top: 100px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .csvUpload .csvArrow {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .api-docs .unifiedButtons {
    text-align: left;
    margin-top: 20px;
  }
  .btn-bigger-package {
    padding: 0 0.5em;
  }
  div.blog h2,
  .blog .blogDetail h1 {
    font-size: 1.4em;
    line-height: 1.5em;
  }
  div.how-it-works .exampleContainer {
    width: 100%;
  }
  div.how-it-works .exampleContainer.right {
    display: none;
  }
  div.how-it-works .exampleContainer.process {
    margin: 30px 0 0;
    float: left;
  }
  div.how-it-works .exampleContainer.process .processContainer {
    max-width: 400px;
    margin: 0 auto;
    position: relative;
  }
  div.how-it-works .logo.mobile {
    display: inline-block;
    max-width: 70%;
  }
}
@media screen and (max-width: 480px) {
  .account h2 {
    text-align: center;
  }
  #euCookieSettings a.cookieButton {
    margin: 10px 0;
  }
  #euCookie .inner {
    font-size: 0.87em;
    line-height: 1.2em;
    padding: 5px 10px 10px;
  }
  #euCookie .inner a.cookieButton {
    display: block;
    width: 90%;
    margin: 10px auto 2px;
    padding: 10px;
  }
  #euCookie .minor-action {
    margin: 10px;
  }
  .api-docs .key {
    width: 30%;
    word-break: break-all;
  }
}
@media screen and (max-width: 768px) {
  .nav > li > a {
    padding-top: 7px;
    padding-bottom: 7px;
  }
  .pricing-info a.white {
    padding: 10px 0;
    display: inline-block;
  }
  article {
    padding: 15px;
  }
}
@media screen and (max-width: 1200px) and (min-width: 900px) {
  nav.main ul li a {
    padding: 0 6px;
    font-size: 14px;
  }
}
@media screen {
  .formWhite {
    background-color: #ffffff;
    display: inline-block;
    border-radius: 2px;
    padding: 25px 15px;
    width: 100%;
  }
  .formWhite .row {
    margin: 0;
  }
  .formWhitePadding {
    padding: 20px;
  }
}
@media only screen and (min-width: 993px) {
  .container {
    width: 90%;
  }
}
@media only screen and (min-width: 1103px) {
  .container {
    width: 80%;
  }
}
@media screen {
  .navbar-fixed-top .navbar-collapse {
    max-height: 400px;
  }
  .navbar-fixed-bottom .navbar-collapse {
    max-height: 400px;
  }
  nav.main {
    box-shadow: 0 10px 20px 4px rgba(82, 82, 82, 0.06);
  }
  .card .card-action a:not(.btn):not(.btn-small):not(.btn-large):not(.btn-large):not(.btn-floating) {
    color: #ffffff;
    background-color: #026bc3;
    font-size: 1em;
    font-weight: bold;
    margin-right: 0;
  }
  .card .card-action a:not(.btn):not(.btn-small):not(.btn-large):not(.btn-large):not(.btn-floating).active, .card .card-action a:not(.btn):not(.btn-small):not(.btn-large):not(.btn-large):not(.btn-floating):hover {
    background-color: #004d8c;
  }
  .dropdown-content {
    max-height: 660px;
  }
  .dropdown-content li:hover {
    background-color: #f0f8ff;
  }
  .jquery-plugin input {
    margin: 1em 1em 0 0;
    padding: 0.5em;
    border-radius: 5px;
    border: 0;
    background-color: rgba(51, 161, 226, 0.06);
    width: 100%;
    float: left;
    font-size: 1.2em;
  }
  .change-email form,
  .change-password form,
  .billing-information form {
    max-width: 500px;
  }
  .form_element li {
    list-style-type: none;
  }
  .no-line-height {
    line-height: 0;
  }
  .view-transactions .transactions {
    width: 100%;
    max-width: 800px;
    font-size: 1.1em;
  }
  .view-transactions .transactions td {
    padding: 5px 20px 5px 0;
  }
  .view-transactions .transactions tr {
    border-bottom: 1px solid rgba(51, 161, 226, 0.06);
  }
  .monthlySettlements table {
    width: 50%;
    min-width: 400px;
  }
  .legal input {
    margin-right: 10px;
  }
  .testdrive input {
    margin: 1em 1em 0 0;
    border: 1px solid #cccccc;
  }
  .navbar-brand img {
    width: 190px;
  }
  .illu .visibilityPixel {
    position: absolute;
    top: 300px;
    width: 1px;
    height: 1px;
    background: none;
  }
  .btn.white {
    color: #026bc3;
  }
  .btn.white.transparent {
    background-color: transparent;
  }
  .btn.white.white-alice-blue:hover {
    background-color: #e3f0fb !important;
  }
  .row:last-child {
    margin-bottom: 0;
  }
  .auto-overflow {
    overflow: auto;
  }
  .notification {
    margin-top: 20px;
    padding: 9px;
    border-radius: 4px;
    background-color: #fffbb8;
  }
  .alert {
    display: none;
  }
  #react-contact-form {
    min-height: 244px;
  }
  .dropdown-content li > a,
  .dropdown-content li > span {
    padding: 14px 12px;
  }
}
@media screen and (max-width: 992px) {
  footer.site-footer .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  footer.site-footer .footer-brand {
    max-width: none;
  }
}
@media screen and (max-width: 600px) {
  footer.site-footer {
    padding: 40px 0 24px;
  }
  footer.site-footer .footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }
  footer.site-footer .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
@media screen {
  nav.main {
    height: 80px;
    line-height: 80px;
    box-shadow: none;
  }
  nav.main .logo {
    margin: 18px 40px 10px 20px;
    height: auto;
  }
  nav.main .logo-container {
    line-height: initial;
  }
  nav.main .menu-main {
    display: none;
    line-height: normal;
  }
  nav.main a.sidenav {
    display: block;
  }
  nav.main .menu-main > li {
    display: inline-flex;
    align-items: center;
    height: 80px;
    vertical-align: top;
  }
  nav.main .menu-main a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    min-width: 44px;
    padding: 0 14px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2d3748;
    text-align: center;
    white-space: nowrap;
    transition: color 0.2s ease, background-color 0.2s ease;
  }
  nav.main .menu-main.right {
    margin-right: 10px;
  }
  nav.main .menu-main.right > li + li {
    margin-left: 8px;
  }
  nav.main .menu-main > li > a:hover,
  nav.main .menu-main > li > a:focus-visible {
    background-color: rgba(2, 107, 195, 0.08);
    color: #026bc3;
  }
  nav.main .menu-main > li.active {
    background-color: transparent;
  }
  nav.main .menu-main > li.active > a,
  nav.main .menu-main > li.active > a:hover,
  nav.main .menu-main > li.active > a:focus-visible {
    background-color: rgba(2, 107, 195, 0.1);
    color: #026bc3;
  }
  nav.main .main-menu-sub {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05), 0 15px 40px rgba(0, 0, 0, 0.1);
    visibility: hidden;
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    max-width: 220px;
    margin-top: 8px;
    padding: 8px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    line-height: normal;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    z-index: 1002;
  }
  nav.main .main-menu-sub .category {
    font-size: 1em;
    color: #026bc3;
    margin-bottom: 10px;
    margin-top: 20px;
  }
  nav.main .main-menu-sub li {
    width: 100%;
    height: auto;
    display: block;
  }
  nav.main .main-menu-sub a {
    height: 44px;
    width: 100%;
    justify-content: flex-start;
    text-align: left;
    border-radius: 10px;
    font-weight: 500;
  }
  nav.main .main-menu-sub a:hover, nav.main .main-menu-sub a:focus-visible {
    background-color: rgba(2, 107, 195, 0.08);
    color: #026bc3;
  }
  nav.main .main-menu-sub.main-menu-sub-large {
    min-width: 460px;
    max-width: 460px;
  }
  nav.main li.main-menu:hover {
    position: relative;
  }
  nav.main li.main-menu:hover::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 10px;
  }
  nav.main li.main-menu:hover .main-menu-sub {
    visibility: visible;
    opacity: 1;
    transform: none;
  }
  nav.main li.language {
    line-height: normal;
  }
  nav.main li.language .dropdown-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    width: 62px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 50px;
    background-color: transparent;
    text-align: center;
    vertical-align: top;
    transition: background-color 0.2s ease;
  }
  nav.main li.language .dropdown-button:hover, nav.main li.language .dropdown-button:focus-visible {
    background-color: rgba(2, 107, 195, 0.08);
  }
  nav.main li.language img {
    width: 22px;
    height: 22px;
    position: static;
    top: 0;
    flex: 0 0 auto;
    vertical-align: middle;
    border-radius: 50%;
    object-fit: cover;
  }
  nav.main li.language .dropdown-button::after {
    content: "expand_more";
    font-family: "Material Icons";
    font-size: 20px;
    line-height: 1;
    color: #718096;
    transition: color 0.2s ease, transform 0.2s ease;
  }
  nav.main li.language .dropdown-button:hover::after,
  nav.main li.language .dropdown-button:focus-visible::after {
    color: #026bc3;
  }
  nav.main #lang-dropdown {
    width: 230px !important;
    margin-top: 6px;
    line-height: normal;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05), 0 15px 40px rgba(0, 0, 0, 0.1);
    padding: 8px;
  }
  nav.main #lang-dropdown > li > a {
    display: flex;
    align-items: center;
    gap: 12px;
    height: auto;
    min-height: 44px;
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
    text-align: left;
    color: #2d3748;
  }
  nav.main #lang-dropdown > li > a:hover {
    background-color: #f8f9fa;
    color: #026bc3;
  }
  nav.main li.nav-sign-up {
    display: inline-flex;
    align-items: center;
    height: 80px;
    padding: 0 6px;
  }
  nav.main li.nav-sign-up:hover {
    background-color: transparent;
  }
  nav.main li.nav-sign-up a.btn {
    display: inline-flex;
    align-items: center;
    height: 44px;
    line-height: 44px;
    padding: 0 22px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    color: #ffffff;
    white-space: nowrap;
    max-width: none;
    background-color: #44c55f;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  }
  nav.main li.nav-sign-up a.btn:hover, nav.main li.nav-sign-up a.btn:focus-visible {
    color: #ffffff;
    background-color: #39b452;
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  nav.main li.nav-login {
    display: inline-flex;
    align-items: center;
    height: 80px;
  }
  nav.main li.nav-login:hover {
    background-color: transparent;
  }
  nav.main li.nav-login a {
    gap: 8px;
    height: 44px;
    padding: 0 14px;
    border: 0;
    background-color: transparent;
  }
  nav.main li.nav-login a img.profilePicture {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 auto;
  }
  nav.main li.nav-login a .material-icons {
    font-size: 24px;
    margin: 0;
  }
  nav.main .menu-main a:focus-visible,
  nav.main .logo-container:focus-visible,
  nav.main a.sidenav-trigger:focus-visible {
    outline: 2px solid #026bc3;
    outline-offset: 2px;
  }
  #dropdown1,
  #dropdown2 {
    width: 300px !important;
  }
  nav.nav-extended .nav-wrapper {
    min-height: inherit;
  }
  .nav-account {
    clear: both;
  }
}
@media only screen and (max-width : 600px) {
  .nav-account {
    display: inline-grid;
  }
}
@media screen {
  nav,
  nav .nav-wrapper span.material-icons,
  nav a.sidenav,
  nav a.sidenav span.material-icons {
    height: inherit;
    line-height: inherit;
  }
  .navbar-fixed {
    height: inherit;
  }
  nav.second {
    line-height: 60px;
  }
  nav.second .dropdown-content {
    line-height: normal;
  }
  nav.admin li a {
    padding: 5px;
    min-width: 120px;
  }
  nav.main .button-burger,
  .side-nav .button-burger,
  nav.second .button-burger,
  .nav .button-burger {
    color: #039be5;
    font-size: 40px;
    height: 40px;
  }
  .side-nav ul li.active,
  nav.second ul li.active,
  .nav ul li.active {
    background-color: #026bc3;
  }
  .side-nav ul a,
  nav.second ul a,
  .nav ul a {
    vertical-align: top;
    color: #444;
  }
  .side-nav ul a:hover,
  .side-nav li:hover,
  nav.second ul a:hover,
  nav.second li:hover,
  .nav ul a:hover,
  .nav li:hover {
    background-color: rgba(51, 162, 226, 0.08);
    transition: color 0.5s, background-color 0.5s;
    color: #026bc3;
  }
  .side-nav ul a:hover.no-hover,
  .side-nav li:hover.no-hover,
  nav.second ul a:hover.no-hover,
  nav.second li:hover.no-hover,
  .nav ul a:hover.no-hover,
  .nav li:hover.no-hover {
    background-color: transparent !important;
  }
}
@media only screen and (max-width: 1750px) {
  nav.main .logo {
    margin: 18px 24px 10px 16px;
  }
  nav.main .menu-main a {
    padding: 0 10px;
    font-size: 0.9rem;
  }
  nav.main li.nav-sign-up a.btn {
    padding: 0 16px;
  }
  html[lang=fr] nav.main .menu-main a,
  html[lang=de] nav.main .menu-main a,
  html[lang=es] nav.main .menu-main a,
  html[lang=nl] nav.main .menu-main a,
  html[lang=pt] nav.main .menu-main a,
  html[lang=tr] nav.main .menu-main a,
  html[lang=el] nav.main .menu-main a {
    padding: 0 8px;
  }
}
@media only screen and (max-width: 1650px) {
  nav.main .login-label {
    display: none;
  }
  nav.main li.nav-login a {
    width: 44px;
    padding: 0;
  }
  nav.main li.nav-sign-up a.btn {
    padding: 0 14px;
  }
}
@media screen {
  .sidenav .sidenav-header {
    display: flex;
    align-items: center;
    padding: 20px 24px 14px;
    border-bottom: 1px solid #eef2f7;
  }
  .sidenav .sidenav-header img {
    display: block;
  }
  .sidenav .sidenav-cta {
    padding: 16px 24px 6px;
  }
  .sidenav .sidenav-cta .btn {
    display: block;
    width: 100%;
    height: 44px;
    line-height: 44px;
    text-align: center;
    border-radius: 22px;
    font-weight: 600;
    letter-spacing: 0.3px;
    background-color: #44c55f;
    box-shadow: 0 3px 10px rgba(69, 214, 5, 0.3);
  }
  .sidenav .sidenav-cta .btn:hover, .sidenav .sidenav-cta .btn:focus {
    background-color: #1a8514;
  }
  .sidenav ul.sidenav-nav {
    margin: 8px 0;
  }
  .sidenav ul.sidenav-nav li a {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 44px;
    line-height: 44px;
    margin: 2px 12px;
    padding: 0 12px;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #334155;
  }
  .sidenav ul.sidenav-nav li a .inline-icon {
    color: #64748b;
  }
  .sidenav ul.sidenav-nav li.active a {
    background: rgba(51, 161, 226, 0.06);
    color: #026bc3;
    font-weight: 600;
  }
  .sidenav ul.sidenav-account {
    border-top: 1px solid #eef2f7;
    padding-top: 8px;
  }
  .sidenav .langlist-modern {
    padding: 16px 16px 24px;
    background-color: #f5f5f5;
  }
  .sidenav .langlist-modern .langlist-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #64748b;
    line-height: normal;
    cursor: pointer;
    list-style: none;
    -webkit-tap-highlight-color: transparent;
  }
  .sidenav .langlist-modern .langlist-title::-webkit-details-marker {
    display: none;
  }
  .sidenav .langlist-modern .langlist-title .langlist-current {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .sidenav .langlist-modern .langlist-title .langlist-current img {
    border-radius: 50%;
  }
  .sidenav .langlist-modern .langlist-title .langlist-current .material-icons {
    font-size: 20px;
    transition: transform 0.2s ease;
  }
  .sidenav .langlist-modern[open] .langlist-title .material-icons {
    transform: rotate(180deg);
  }
  .sidenav .langlist-modern .langlist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 14px;
  }
  .sidenav .langlist-modern .lang-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 40px;
    padding: 0 12px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #334155;
    font-size: 0.9rem;
    line-height: normal;
    transition: border-color 0.2s ease, background-color 0.2s ease;
  }
  .sidenav .langlist-modern .lang-chip img {
    border-radius: 50%;
    flex: 0 0 auto;
  }
  .sidenav .langlist-modern .lang-chip span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .sidenav .langlist-modern .lang-chip:hover {
    border-color: #026bc3;
  }
  .sidenav .langlist-modern .lang-chip.active {
    border-color: #026bc3;
    background: rgba(51, 161, 226, 0.06);
    color: #026bc3;
    font-weight: 600;
  }
  .sidenav li.language a {
    text-align: center;
    display: inline-block;
    padding: 3px 12px;
  }
  .sidenav li.language a img {
    width: 20px;
    height: 20px;
    margin: 10px 0;
  }
  .waves-effect.waves-ga .waves-ripple {
    /* The alpha value allows the text and background color
    of the button to still show through. */
    background-color: rgba(51, 162, 226, 0.3);
    cursor: pointer;
  }
}
@media only screen and (max-width: 1550px) {
  nav.main .logo {
    margin: 18px 20px 10px 12px;
  }
  nav .sidenav {
    margin: 0 8px;
  }
}
@media only screen and (max-width: 1850px) {
  html[lang=el] nav.main .menu-main a {
    padding: 0 6px;
    font-size: 0.85rem;
  }
  html[lang=el] nav.main li.nav-sign-up a.btn {
    max-width: none;
  }
}
@media only screen and (min-width: 1551px) {
  nav.main a.sidenav {
    display: none;
  }
  nav.main .menu-main {
    display: block;
  }
  a.sidenav-trigger {
    display: none;
  }
}
@media only screen and (max-width: 1550px) {
  a.sidenav-trigger {
    display: block !important;
  }
  .hide-on-med-and-down {
    display: none !important;
  }
  nav .brand-logo {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@media screen {
  .progress {
    position: relative;
    height: 10px;
    display: block;
    width: 100%;
    background-color: var(--ga-border, #e2e8f0);
    border-radius: 0.5rem;
    margin: 0.5rem 0 1rem 0;
    overflow: hidden;
  }
  .progress .determinate {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: var(--ga-primary, #026bc3);
    transition: width 0.3s linear;
    border-radius: 5px;
  }
  .progress .indeterminate {
    background-color: var(--ga-primary, #026bc3);
  }
  .progress .indeterminate:before {
    content: "";
    position: absolute;
    background-color: inherit;
    top: 0;
    left: 0;
    bottom: 0;
    will-change: left, right;
    animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
  }
  .progress .indeterminate:after {
    content: "";
    position: absolute;
    background-color: inherit;
    top: 0;
    left: 0;
    bottom: 0;
    will-change: left, right;
    animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
    animation-delay: 1.15s;
  }
  @keyframes indeterminate {
    0% {
      left: -35%;
      right: 100%;
    }
    60% {
      left: 100%;
      right: -90%;
    }
    100% {
      left: 100%;
      right: -90%;
    }
  }
  @keyframes indeterminate-short {
    0% {
      left: -200%;
      right: 100%;
    }
    60% {
      left: 107%;
      right: -8%;
    }
    100% {
      left: 107%;
      right: -8%;
    }
  }
  .auth-token-page {
    background-color: #f8f9fa;
    padding: 48px 0 64px;
  }
  .auth-token-page .auth-token-card {
    max-width: 560px;
    margin: 0 auto;
    padding: 32px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
  }
  .auth-token-page .auth-token-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  }
  .auth-token-page .auth-token-icon .material-icons {
    font-size: 28px;
    color: #ffffff;
  }
  .auth-token-page h1 {
    margin: 0 0 8px;
    font-size: 1.75rem;
    font-weight: 700;
    color: #2d3748;
  }
  .auth-token-page .auth-token-app {
    margin: 0 0 24px;
    font-size: 1.1rem;
    color: #2d3748;
  }
  .auth-token-page .auth-token-app strong {
    font-weight: 700;
  }
  .auth-token-page p {
    color: #718096;
    line-height: 1.6;
  }
  .auth-token-page .auth-token-scope {
    margin: 0 0 24px;
    padding: 16px;
    list-style: none;
    text-align: left;
    background-color: #f8f9fa;
    border-radius: 8px;
  }
  .auth-token-page .auth-token-scope li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 6px 0;
    font-size: 0.9rem;
    color: #2d3748;
  }
  .auth-token-page .auth-token-scope li .material-icons {
    font-size: 20px;
    color: #667eea;
    flex: 0 0 auto;
  }
  .auth-token-page .auth-token-actions {
    margin-bottom: 24px;
  }
  .auth-token-page .auth-token-actions .btn {
    height: auto;
    padding: 14px 48px;
    line-height: 1.4;
    font-size: 1.1rem;
    font-weight: 700;
  }
  .auth-token-page .auth-token-hint {
    margin: 0;
    font-size: 0.875rem;
  }
  .auth-token-page .auth-token-callback .success-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 16px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
  }
  .auth-token-page .auth-token-callback .success-header .material-icons,
  .auth-token-page .auth-token-callback .success-header .inline-icon {
    color: #44c55f;
    font-size: 1.6rem;
  }
  .auth-token-page .auth-token-callback p {
    margin: 0;
  }
}
@media screen and (max-width: 600px) {
  .auth-token-page {
    padding: 24px 0 48px;
  }
  .auth-token-page .auth-token-card {
    padding: 24px;
  }
  .auth-token-page h1 {
    font-size: 1.5rem;
  }
}
@media screen {
  .csvFiles {
    position: relative;
  }
  .myApiKey {
    position: relative;
  }
  .myApiKey .keyExample {
    color: var(--ga-text-soft);
    margin: 0 0 12px;
  }
  .myApiKey .apiKeyBox {
    display: block;
    width: 100%;
    padding: 14px 16px;
    font-family: "Courier New", monospace;
    font-size: 1.1rem;
    letter-spacing: 0.04em;
    color: var(--ga-text);
    background-color: var(--ga-bg);
    border: 1px solid var(--ga-border) !important;
    border-radius: var(--ga-radius-sm);
    margin: 16px 0;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }
  .myApiKey .apiKeyBox:hover {
    border-color: var(--ga-primary) !important;
    box-shadow: 0 0 0 3px rgba(2, 107, 195, 0.12);
  }
  .myApiKey pre {
    margin: 8px 0 0;
    padding: 0;
    background: transparent;
    overflow-x: auto;
  }
  .myApiKey .exampleBox {
    display: block;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid var(--ga-border) !important;
    border-radius: var(--ga-radius-sm);
    margin: 0;
    height: auto;
    padding: 12px 14px;
    font-family: "Courier New", monospace;
    font-size: 0.95rem;
    color: var(--ga-text);
    background-color: var(--ga-bg);
    font-weight: 400;
    cursor: pointer;
  }
  .myApiKey .exampleBox:hover {
    border-color: var(--ga-primary) !important;
  }
}
@media only screen and (max-width : 992px) {
  .myApiKey .apiKeyBox {
    font-size: 1rem;
  }
}
@media screen {
  .share-buttons {
    height: 32px;
    padding-top: 3px;
  }
  .share-buttons a {
    margin-right: 10px;
    display: inline-block;
    line-height: 0;
  }
  .share-buttons img {
    width: 40px;
    height: 40px;
    position: relative;
    transition: all 0.5s ease 0s;
    top: 0;
  }
  .share-buttons img:hover {
    top: -3px;
  }
  .share-buttons.small {
    height: 40px;
  }
  .share-buttons.small a {
    margin-right: 8px;
  }
  .share-buttons.small img {
    width: 36px;
    height: 36px;
  }
  .email-rotation {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .email-rotation .email-container {
    position: relative;
    text-align: center;
  }
  .email-rotation .email-container .email-email {
    margin: 0 0 20px 0;
    color: #ffffff;
    background-color: #026bc3;
    font-size: 1.2em;
    padding: 3px 20px;
    height: 40px;
  }
  .email-rotation .email-container .email-round {
    text-align: center;
    width: 140px;
    height: 140px;
    background-color: rgba(237, 237, 237, 0.92);
    border-radius: 70px;
    color: white;
    margin: 0 auto;
  }
  .email-rotation .email-container .email-round .email-name {
    width: 140px;
    text-align: center;
    color: #2f739a;
    font-size: 2.2em;
  }
  div.testdrive {
    overflow: hidden;
  }
  div.testdrive.modern-section {
    margin: 0;
    padding: 80px 0;
    background-color: #f9f9f9;
  }
  div.testdrive.modern-section .section-header {
    margin-bottom: 30px;
  }
  div.testdrive form {
    margin-top: 30px;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    flex-direction: column;
  }
  div.testdrive form.center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  div.testdrive form .input-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 500px;
    margin-bottom: 20px;
  }
  div.testdrive form .testdrive-examples {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 5px;
  }
  div.testdrive form .testdrive-examples .testdrive-examples-label {
    font-size: 0.9rem;
    color: #64748b;
    margin-right: 5px;
  }
  div.testdrive form .testdrive-examples .testdrive-example {
    border: 1px solid #d7dfe8;
    background: #fff;
    color: #2563eb;
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    line-height: 1.4;
    box-shadow: none;
    transition: all 0.3s ease;
  }
  div.testdrive form .testdrive-examples .testdrive-example:hover, div.testdrive form .testdrive-examples .testdrive-example:focus {
    border-color: #026bc3;
    background-color: #026bc3;
    color: #fff;
    transform: translateY(-2px);
  }
  div.testdrive form .captcha-wrapper {
    margin-top: 20px;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: min-height 0.4s ease;
    width: 100%;
    max-width: 500px;
  }
  div.testdrive form .captcha-wrapper .g-recaptcha {
    margin: 0 auto 20px;
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  div.testdrive form .captcha-wrapper #recaptcha-not-loaded {
    margin: 0 auto 20px;
    color: #64748b;
    text-align: center;
    transition: opacity 0.4s ease;
  }
  div.testdrive form .captcha-wrapper #recaptcha-not-loaded a {
    color: #2563eb;
  }
  div.testdrive form .captcha-wrapper .button-wrapper {
    margin-top: 10px;
    text-align: center;
    width: 100%;
    transition: opacity 0.3s ease;
  }
  div.testdrive input[type=text].testdrive {
    width: 100%;
    max-width: 500px;
    padding: 15px 20px;
    font-size: 1.2rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background-color: #fff;
    transition: all 0.3s ease;
    float: none !important;
    color: #555555;
    box-sizing: border-box;
    height: 60px;
  }
  div.testdrive input[type=text].testdrive:focus {
    outline: none;
    border-color: rgb(15, 134, 233);
    box-shadow: 0 0 0 3px rgba(15, 134, 233, 0.1);
    background-color: #f8faff;
  }
  div.testdrive input[type=text].testdrive::placeholder {
    color: #64748b;
  }
  div.testdrive .btn-submit {
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 8px;
    border: none;
    background: linear-gradient(135deg, rgb(15, 134, 233) 0%, rgb(59, 130, 246) 100%);
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 120px;
  }
  div.testdrive .btn-submit:hover:not(.disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15, 134, 233, 0.3);
    background: linear-gradient(135deg, rgb(59, 130, 246) 0%, rgb(15, 134, 233) 100%);
    color: white;
  }
  div.testdrive .btn-submit.disabled {
    background: #94a3b8 !important;
    cursor: not-allowed;
    opacity: 0.6;
  }
  div.testdrive .btn-submit.disabled:hover {
    transform: none;
    box-shadow: none;
  }
  div.testdrive .btn-submit.hidden {
    display: none !important;
  }
  div.testdrive .result {
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  div.testdrive .result .result-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #e2e8f0;
  }
  div.testdrive .result .result-header {
    background: #f8fafc;
    padding: 20px 30px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
  }
  div.testdrive .result .result-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #1e293b;
    font-weight: 600;
  }
  div.testdrive .result .result-header .textOutput {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgb(15, 134, 233);
    padding: 8px 16px;
    background: rgba(15, 134, 233, 0.1);
    border-radius: 20px;
  }
  div.testdrive .result .result-body {
    padding: 30px;
  }
  div.testdrive .result .result-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
  }
  div.testdrive .result .result-grid .result-item {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 20px 15px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
  }
  div.testdrive .result .result-grid .result-item:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }
  div.testdrive .result .result-grid .result-item .label {
    font-size: 0.9rem;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
  }
  div.testdrive .result .result-grid .result-item .value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
  }
  div.testdrive .result .result-grid .result-item .value.gender {
    text-transform: capitalize;
  }
  div.testdrive .result .json-preview h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #475569;
    font-weight: 600;
  }
  div.testdrive .result .json-preview .jsonOutput {
    background: #1e293b;
    color: #e2e8f0;
    padding: 20px;
    border-radius: 12px;
    overflow-x: auto;
    font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
    font-size: 0.9rem;
    line-height: 1.5;
    border: 1px solid #334155;
    white-space: pre-wrap;
    word-break: break-all;
  }
  div.testdrive .result .result-cta {
    margin-top: 30px;
    padding: 28px 24px;
    background: rgba(51, 161, 226, 0.06);
    border: 1px solid rgba(51, 161, 226, 0.15);
    border-radius: 12px;
  }
  div.testdrive .result .result-cta p {
    max-width: 560px;
    margin: 0 auto 20px;
    color: #334155;
    font-size: 1.1rem;
    line-height: 1.6;
  }
  div.testdrive .result .result-cta .btn {
    height: 44px;
    line-height: 44px;
    padding: 0 32px;
    border-radius: 22px;
    font-weight: 600;
    letter-spacing: 0.3px;
    background-color: #44c55f;
    box-shadow: 0 3px 10px rgba(69, 214, 5, 0.3);
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  }
  div.testdrive .result .result-cta .btn:hover {
    background-color: #1a8514;
    box-shadow: 0 6px 18px rgba(69, 214, 5, 0.4);
    transform: translateY(-1px);
  }
}
@media screen and (max-width: 768px) {
  div.testdrive input[type=text].testdrive {
    max-width: 100%;
    font-size: 1.1rem;
  }
  div.testdrive .captcha-wrapper {
    min-height: 100px;
  }
  div.testdrive .btn-submit {
    width: auto !important;
    max-width: 300px;
    margin-top: 15px;
    padding: 12px 24px;
    font-size: 1rem !important;
    line-height: normal !important;
    display: inline-block !important;
  }
  div.testdrive .button-wrapper {
    text-align: center !important;
    width: 100%;
  }
  div.testdrive .result {
    margin-top: 30px;
  }
  div.testdrive .result .result-header {
    padding: 15px 20px;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  div.testdrive .result .result-header h3 {
    font-size: 1.3rem;
  }
  div.testdrive .result .result-header .textOutput {
    font-size: 1rem;
  }
  div.testdrive .result .result-body {
    padding: 20px 15px;
  }
  div.testdrive .result .result-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
  }
  div.testdrive .result .result-grid .result-item {
    padding: 15px 10px;
  }
  div.testdrive .result .result-grid .result-item .label {
    font-size: 0.8rem;
  }
  div.testdrive .result .result-grid .result-item .value {
    font-size: 1.1rem;
  }
  div.testdrive .result .json-preview .jsonOutput {
    padding: 15px;
    font-size: 0.8rem;
  }
}
@media screen {
  div.illu {
    padding: 5em 0 0;
    background-color: #f6f8fc;
    position: relative;
  }
  div.illu img {
    margin: 2em 0 0;
    max-width: 900px;
    width: 100%;
    height: auto;
  }
  div.illu h2 {
    margin: 0;
    font-size: 2.1em;
  }
  div.csvUpload td {
    padding: 0;
    font-size: 16px;
  }
  div.csvUpload .csvLabel {
    border: 5px solid rgba(232, 232, 232, 0.8);
    display: inline-block;
    left: -33px;
    position: relative;
    padding: 5px 40px;
    top: -10px;
    font-style: italic;
    font-weight: bold;
    font-size: 1.2em;
    margin: 10px 0;
    border-radius: 3px;
    background-color: #3CA4DF;
  }
  div.csvUpload .csvTableContainer {
    display: inline-block;
    font-size: 1.1em;
    position: relative;
    word-break: break-all;
    margin-top: 30px;
    width: 100%;
  }
  div.csvUpload .csvImageContainer {
    position: relative;
  }
  div.csvUpload .csvArrow {
    position: absolute;
    top: 55px;
    opacity: 0.8;
    left: 0;
    right: 0;
    text-align: center;
  }
  div.csvUpload .csvArrow img {
    width: 100px;
  }
  .jumbotron {
    color: #fff;
    position: relative;
    padding: 2em 0;
    overflow: hidden;
    min-height: 550px;
    background: rgb(135, 141, 242);
    background: linear-gradient(41deg, rgb(135, 141, 242) 0%, rgb(5, 174, 221) 64%);
  }
  .jumbotron .footer-bg {
    height: 200px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8117647059) 50%, rgba(255, 255, 255, 0.8117647059) 100%);
  }
  .jumbotron h3 {
    font-size: 20px;
    margin: 0;
  }
  .jumbotron .jumbotron-background-cloud {
    position: absolute;
    top: 0px;
    right: 0;
    left: 0;
    bottom: -10px;
    background-position: right bottom;
    background-size: cover;
    background-image: url(/img/landingpage/titleBg.svg);
  }
  .jumbotron .jumbotron-background {
    position: absolute;
    top: -100px;
    bottom: 0;
    right: 0;
    background-position: right center;
    background-size: contain;
    background-image: url(/img/landingpage/title.svg);
    background-repeat: no-repeat;
    max-width: 1200px;
    width: 70%;
  }
  .jumbotron .jumbotron-description {
    max-width: 460px;
  }
  .jumbotron p, .jumbotron div {
    font-size: 18px;
  }
  .jumbotron .transparentBox {
    padding: 10px;
    border-radius: 10px;
    word-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
    background-color: #3190e5;
    width: 100%;
  }
  .jumbotron .transparentBox p {
    font-size: 16px;
  }
  .jumbotron .transparentBox a {
    color: #c9f0ef;
  }
  .jumbotron h1 {
    margin: 0 0 25px;
    font-size: 59px;
  }
  .jumbotron .data-container {
    margin-top: 160px;
    margin-bottom: 5px;
  }
  .jumbotron .data {
    display: inline-block;
    width: 32%;
    text-align: center;
    border-radius: 5px;
  }
  .jumbotron .data fact {
    color: #646e73;
    display: inline-block;
  }
  .jumbotron .data .icon {
    display: inline-block;
    background-color: white;
    color: #026bc3;
    border-radius: 30px;
    margin-bottom: 15px;
    width: 60px;
    font-size: 0.5em;
    position: relative;
    top: 18px;
  }
  .jumbotron .data .icon span.material-icons {
    line-height: 60px;
    font-size: 50px;
  }
  .jumbotron .data span.text, .jumbotron .data a {
    font-size: 2.3em;
    color: #646e73;
    text-decoration: none;
  }
  .jumbotron .data span.text {
    background-color: rgba(255, 255, 255, 0.3490196078);
    padding: 5px;
    border-radius: 3px;
    font-size: 1em;
  }
  .jumbotron .container {
    position: relative;
    min-height: 400px;
  }
  .gender-api-explained {
    width: 900px;
    margin: 50px auto 10px;
    display: block;
    max-width: 100%;
    cursor: pointer;
  }
  .gender-api-explained:focus {
    outline: none;
  }
  div.how-it-works {
    background: #026bc3;
    background: linear-gradient(41deg, #05aedd 0%, #4c8eef 64%);
    padding-bottom: 70px;
  }
  div.how-it-works .how-it-works-cta {
    margin-top: 36px;
  }
  div.how-it-works .how-it-works-cta p {
    margin: 0 0 50px;
    color: #ffffff;
    font-size: 1.05rem;
    opacity: 0.92;
  }
}
@media screen and (max-width: 600px) {
  div.how-it-works {
    padding-bottom: 62px;
  }
  div.how-it-works .how-it-works-cta {
    margin-top: 26px;
  }
  div.how-it-works .how-it-works-cta p {
    margin-bottom: 42px;
    font-size: 0.95rem;
  }
}
@media screen {
  div.how-it-works .exampleContainer.process .processContainer {
    position: relative;
  }
}
@media screen and (min-width: 991px) {
  .jumbotron .transparentBox {
    max-width: 390px;
  }
}
@media screen and (min-width: 1450px) {
  .jumbotron .transparentBox {
    margin-right: 200px;
  }
}
@media screen and (max-width: 800px) {
  .jumbotron .jumbotron-background {
    top: 125px;
    width: 100%;
  }
  div.testdrive.modern-section {
    padding: 60px 0;
  }
  .email-rotation .email-container .email-email {
    font-size: 13px;
    line-height: 32px;
    height: 32px;
    margin-bottom: 10px;
    padding: 0 12px;
  }
  .email-rotation .email-container .email-round {
    width: 80px;
    height: 80px;
    border-radius: 40px;
  }
  .email-rotation .email-container .email-round .email-name {
    width: 80px;
    font-size: 1.3em;
  }
}
@media screen and (min-width: 1120px) {
  .jumbotron .transparentBox {
    max-width: 470px;
  }
  div.csvUpload .csvTableContainer {
    width: 430px;
  }
}
@media screen and (max-width: 2100px) {
  .jumbotron .jumbotron-background-cloud {
    bottom: -20px;
  }
}
@media screen and (max-width: 2000px) {
  .jumbotron .jumbotron-background {
    width: 42%;
    top: -180px;
  }
}
@media screen and (max-width: 1700px) {
  .jumbotron .jumbotron-background {
    width: 41%;
    top: -200px;
  }
}
@media screen and (max-width: 1600px) {
  .jumbotron .data h3 {
    display: block;
  }
  .jumbotron .data-container {
    margin-top: 50px;
  }
}
@media screen and (max-width: 1250px) {
  .jumbotron .jumbotron-background {
    width: 60%;
    top: -180px;
  }
}
@media screen and (max-width: 1000px) {
  .jumbotron .jumbotron-background {
    width: 65%;
    top: -150px;
  }
}
@media screen and (max-width: 1120px) {
  div.csvUpload .csvTableContainer {
    float: none;
  }
  div.csvUpload .csvArrow {
    display: none;
  }
  .jumbotron .jumbotron-background-cloud {
    right: -300px;
  }
}
@media screen and (max-width: 800px) {
  .jumbotron .jumbotron-background {
    width: 70%;
    top: -300px;
  }
  .jumbotron .data {
    width: 100%;
    display: block;
  }
}
@media screen and (max-width: 400px) {
  .jumbotron .jumbotron-background {
    width: 70%;
    top: -200px;
  }
}
@media screen {
  .modern-hero {
    position: relative;
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    overflow: hidden;
  }
  .modern-hero .hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }
  .modern-hero .hero-cta {
    margin-top: 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
  }
  .modern-hero .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
  }
  .modern-hero .hero-eyebrow .material-icons {
    font-size: 18px;
  }
  .modern-hero .hero-trust {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    margin: 25px 0 0 0;
    padding: 0;
    font-size: 0.9rem;
    opacity: 0.85;
  }
  .modern-hero .hero-trust li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .modern-hero .hero-trust li .material-icons {
    font-size: 18px;
  }
  .modern-hero .btn-hero-ghost {
    display: inline-flex;
    align-items: center;
    padding: 13px 30px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    background: transparent;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
  }
  .modern-hero .btn-hero-ghost:hover, .modern-hero .btn-hero-ghost:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
  }
  .modern-hero .hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
  }
}
@media screen and (max-width: 768px) {
  .modern-hero .hero-content .hero-cta,
  .modern-hero .hero-content .hero-trust {
    justify-content: center;
  }
}
@media screen {
  .modern-hero .hero-text {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
  }
  .modern-hero .hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
  }
  .modern-hero .hero-text .hero-description {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
  }
  .modern-hero .hero-text .btn-primary {
    background-color: #fff;
    color: #764ba2;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .modern-hero .hero-text .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background-color: #f8f9fa;
  }
  .modern-hero .hero-visual {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
  }
  .modern-hero .hero-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    margin-top: 20px;
    position: relative;
    z-index: 1;
  }
  .modern-hero .hero-stats .stat-item {
    text-align: center;
    margin: 10px;
  }
  .modern-hero .hero-stats .stat-item a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .modern-hero .hero-stats .stat-item a:hover {
    opacity: 0.8;
  }
  .modern-hero .hero-stats .stat-item .icon-circle {
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .modern-hero .hero-stats .stat-item .icon-circle .material-icons {
    font-size: 24px;
  }
  .modern-hero .hero-stats .stat-item .stat-info {
    text-align: left;
    display: flex;
    flex-direction: column;
  }
  .modern-hero .hero-stats .stat-item .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
  }
  .modern-hero .hero-stats .stat-item .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .modern-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
  }
  .modern-section.background-blue {
    background-color: #026bc3;
    background: linear-gradient(41deg, #05aedd 0%, #4c8eef 64%);
    color: #fff;
  }
  .modern-section.background-blue2 {
    background-color: #026bc3;
    background: linear-gradient(41deg, #3e83d2 0%, #3174d5 64%);
    color: #fff;
  }
  .modern-section.white-bg {
    background: #fff !important;
  }
  .modern-section.modern-gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
  }
  .modern-section.modern-gradient-bg .section-header h2, .modern-section.modern-gradient-bg .section-header .section-subtitle {
    color: #fff;
  }
  .modern-section .section-header {
    text-align: center;
    margin-bottom: 50px;
  }
  .modern-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
  }
  .modern-section .section-header .section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
  }
  .modern-section .section-header.white-text h2, .modern-section .section-header.white-text .section-subtitle {
    color: #fff;
  }
  .modern-section .video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    background: #000;
  }
  .modern-section .video-wrapper video {
    width: 100%;
    display: block;
    margin: 0;
  }
  .testdrive-container {
    max-width: 800px;
    margin: 0 auto;
  }
  .testdrive-container .form-wrapper {
    margin-bottom: 30px;
  }
  .testdrive-container .modern-form .input-group {
    display: flex;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    background: #fff;
    padding: 5px;
  }
  .testdrive-container .modern-form .input-group .modern-input {
    flex: 1;
    border: none;
    padding: 15px 25px;
    font-size: 1.2rem;
    border-radius: 50px 0 0 50px;
    outline: none;
  }
  .testdrive-container .modern-form .input-group .modern-input:focus {
    background: #f9f9f9;
  }
  .testdrive-container .modern-form .input-group .btn-submit {
    border-radius: 50px;
    padding: 0 40px;
    margin: 0;
    height: auto;
    box-shadow: none;
  }
  .testdrive-container .modern-form .input-group .btn-submit.disabled {
    background-color: #ccc !important;
    cursor: not-allowed;
  }
  .testdrive-container .modern-result {
    margin-top: 40px;
  }
  .testdrive-container .modern-result .result-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }
  .testdrive-container .modern-result .result-header {
    background: #f1f5f9;
    padding: 20px 30px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .testdrive-container .modern-result .result-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #333;
  }
  .testdrive-container .modern-result .result-header .textOutput {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2563eb;
  }
  .testdrive-container .modern-result .result-body {
    padding: 30px;
  }
  .testdrive-container .modern-result .result-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
  }
  .testdrive-container .modern-result .result-grid .result-item {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 15px;
    background: #f8fafc;
    border-radius: 10px;
  }
  .testdrive-container .modern-result .result-grid .result-item .label {
    font-size: 0.9rem;
    color: #64748b;
    text-transform: uppercase;
    margin-bottom: 5px;
  }
  .testdrive-container .modern-result .result-grid .result-item .value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #334155;
  }
  .testdrive-container .modern-result .json-preview h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #64748b;
  }
  .testdrive-container .modern-result .json-preview pre {
    background: #1e293b;
    color: #e2e8f0;
    padding: 20px;
    border-radius: 10px;
    overflow-x: auto;
    font-family: "Fira Code", monospace;
    margin: 0;
  }
  .integration-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  .integration-options .integration-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    width: 100%;
    max-width: 450px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
  }
  .integration-options .integration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  }
  .integration-options .integration-card:hover .btn-link {
    color: #2563eb;
    padding-left: 5px;
  }
  .integration-options .integration-card .card-image {
    background: #f1f5f9;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
  }
  .integration-options .integration-card .card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
  .integration-options .integration-card .card-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .integration-options .integration-card .card-content h3 {
    margin: 0 0 15px;
    font-size: 1.5rem;
    color: #333;
  }
  .integration-options .integration-card .card-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
  }
  .integration-options .integration-card .card-content .btn-link {
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
  }
}
@media screen and (max-width: 768px) {
  .modern-hero .hero-content {
    flex-direction: column;
    text-align: center;
  }
  .modern-hero .hero-text {
    padding-right: 0;
    margin-bottom: 40px;
  }
  .modern-hero .hero-text h1 {
    font-size: 2.5rem;
  }
  .modern-hero .hero-stats {
    flex-direction: column;
    align-items: center;
  }
  .modern-hero .hero-stats .stat-item {
    width: 100%;
    margin-bottom: 20px;
  }
  .modern-hero .hero-stats .stat-item a {
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }
  .modern-hero .hero-stats .stat-item .stat-info {
    text-align: center;
    align-items: center;
  }
}
@media screen {
  .email-resolver-section {
    min-height: 600px;
    overflow: hidden;
  }
  .email-resolver-section .email-rotation {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
  }
  @keyframes Gradient {
    0% {
      transform: translate(0, 0);
    }
    50% {
      transform: translate(-1000px, 0);
    }
    100% {
      transform: translate(0, 0);
    }
  }
  .presentation-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
  }
  .presentation-section .presentation-wrapper {
    max-width: 900px;
    margin: 0 auto;
  }
  .presentation-section .presentation-content {
    text-align: center;
  }
  .presentation-section .download-action {
    margin-top: 80px;
  }
  .presentation-section .btn-download-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
  }
  .presentation-section .btn-download-modern .material-icons {
    font-size: 24px;
  }
  .presentation-section .btn-download-modern .btn-text {
    margin-right: 8px;
  }
  .presentation-section .btn-download-modern .btn-format {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
  }
  .presentation-section .btn-download-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
    color: #fff;
  }
  .integration-section .section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }
  .integration-section .code-box-wrapper {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    padding: 30px;
    margin-bottom: 40px;
  }
  .integration-section .code-box-wrapper .row.codeBox {
    margin: 0;
  }
  .integration-section .code-box-wrapper .card {
    box-shadow: none;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
  }
  .integration-section .code-box-wrapper .codeBoxNavi {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 15px 20px !important;
  }
  .integration-section .code-box-wrapper .codeBoxNavi .chip {
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #64748b;
    margin: 4px;
    transition: all 0.2s ease;
  }
  .integration-section .code-box-wrapper .codeBoxNavi .chip.active, .integration-section .code-box-wrapper .codeBoxNavi .chip:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-color: transparent;
  }
  .integration-section .code-box-wrapper .codeBlock {
    border: none;
    background: #fff;
  }
  .integration-section .integration-cta {
    margin-top: 30px;
  }
  .integration-section .integration-cta .btn-outline-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  .integration-section .integration-cta .btn-outline-modern .material-icons {
    font-size: 20px;
  }
  .integration-section .integration-cta .btn-outline-modern:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
  }
}
@media screen and (max-width: 768px) {
  .presentation-section .btn-download-modern {
    padding: 14px 24px;
    font-size: 1rem;
  }
  .presentation-section .btn-download-modern .btn-format {
    display: none;
  }
  .integration-section .code-box-wrapper {
    padding: 15px;
    border-radius: 12px;
  }
  .integration-section .codeBoxNavi .chip {
    font-size: 0.85rem;
    padding: 0 12px;
  }
}
@media screen {
  .comparison-section {
    background-color: #f9f9f9;
    padding: 80px 0;
  }
  .comparison-section .comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
  }
  .comparison-section .comparison-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
  }
  .comparison-section .comparison-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }
  .comparison-section .comparison-card .icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f0f8ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
  }
  .comparison-section .comparison-card .icon-wrapper .material-icons {
    font-size: 40px;
    color: #026bc3;
  }
  .comparison-section .comparison-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
  }
  .comparison-section .comparison-card .stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #026bc3;
    margin-bottom: 10px;
    line-height: 1.2;
  }
  .comparison-section .comparison-card p {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
  }
  .comparison-section .comparison-card.speed .stat-value {
    color: #026bc3;
  }
  .comparison-section .comparison-card.speed .icon-wrapper {
    background: rgba(2, 107, 195, 0.1);
  }
  .comparison-section .comparison-card.speed .icon-wrapper .material-icons {
    color: #026bc3;
  }
  .comparison-section .comparison-card.database .stat-value {
    color: #27c93f;
  }
  .comparison-section .comparison-card.database .icon-wrapper {
    background: rgba(39, 201, 63, 0.1);
  }
  .comparison-section .comparison-card.database .icon-wrapper .material-icons {
    color: #27c93f;
  }
  .comparison-section .comparison-card.accuracy .stat-value {
    color: #ffbd2e;
  }
  .comparison-section .comparison-card.accuracy .icon-wrapper {
    background: rgba(255, 189, 46, 0.1);
  }
  .comparison-section .comparison-card.accuracy .icon-wrapper .material-icons {
    color: #ffbd2e;
  }
  .code-window {
    background: #1e1e1e;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    font-family: "Fira Code", monospace;
    text-align: left;
  }
  .code-window .window-header {
    background: #2d2d2d;
    padding: 10px 15px;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 32px;
    border-bottom: 1px solid #232323;
  }
  .code-window .window-header .window-buttons {
    display: flex;
    gap: 8px;
    position: relative;
    z-index: 1;
  }
  .code-window .window-header .window-title {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    color: #8a8a8a;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 0 70px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    pointer-events: none;
  }
  .code-window .window-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0;
    flex: 0 0 auto;
  }
  .code-window .window-header .dot.red {
    background: #ff5f56;
  }
  .code-window .window-header .dot.yellow {
    background: #ffbd2e;
  }
  .code-window .window-header .dot.green {
    background: #27c93f;
  }
  .code-window .window-body {
    padding: 20px;
    color: #d4d4d4;
    font-size: 0.9rem;
  }
  .code-window .window-body .code-line {
    margin-bottom: 10px;
  }
  .code-window .window-body .code-line.request {
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    margin-bottom: 15px;
    word-break: break-all;
  }
  .code-window .window-body .code-line .method {
    color: #569cd6;
    font-weight: bold;
  }
  .code-window .window-body .code-line .url {
    color: #ce9178;
  }
  .code-window .window-body .code-line .param {
    color: #9cdcfe;
  }
  .code-window .window-body pre {
    margin: 0;
    padding: 0;
    background: none;
    border-radius: 0;
    color: #ce9178;
    font-family: inherit;
    font-size: inherit;
    line-height: 1.5;
    text-align: left;
  }
  .how-it-works .how-it-works-code {
    max-width: 520px;
    margin: 0 auto 42px;
  }
  .how-it-works .how-it-works-code .how-it-works-code-caption {
    margin: 0 0 18px;
    text-align: center;
  }
  .how-it-works .how-it-works-code .code-window {
    margin: 0 auto;
  }
}
@media screen and (min-width: 993px) {
  .how-it-works .how-it-works-code {
    max-width: 720px;
  }
  .how-it-works .how-it-works-code .code-window {
    max-width: none;
  }
}
@media screen and (max-width: 600px) {
  .how-it-works .how-it-works-code {
    margin-bottom: 34px;
  }
  .how-it-works .how-it-works-code .how-it-works-code-caption {
    margin-bottom: 14px;
  }
  .how-it-works .how-it-works-code .code-window .window-body {
    padding: 15px;
    font-size: 0.82rem;
  }
}
@media screen {
  .modern-hero .hero-text,
  .modern-hero .hero-stats {
    position: relative;
    z-index: 3;
  }
  .hero-globe {
    position: relative;
    width: 100%;
    max-width: 540px;
    --globe-left: -22.5%;
    --globe-width: 145%;
    --globe-height: 145%;
    --globe-top: -22.5%;
    --globe-shift: 0;
  }
  .hero-globe .hero-globe-stage {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    min-height: 320px;
    overflow: visible;
  }
  .hero-globe .hero-globe-canvas,
  .hero-globe .hero-globe-overlay {
    position: absolute;
    left: var(--globe-left);
    top: var(--globe-top);
    width: var(--globe-width);
    height: var(--globe-height);
    transform: translateX(var(--globe-shift));
  }
  .hero-globe .hero-globe-fallback {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .hero-globe .hero-globe-placeholder {
    width: 68%;
    margin: 0 auto;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 58%), radial-gradient(circle at 50% 50%, rgba(90, 162, 255, 0.16), rgba(75, 58, 145, 0.28) 72%);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  }
  .hero-globe.is-live .hero-globe-fallback {
    opacity: 0;
    transform: translateY(-50%) scale(0.94);
    pointer-events: none;
  }
  .hero-globe .hero-globe-canvas {
    display: block;
    opacity: 0;
    cursor: grab;
    z-index: 0;
    transition: opacity 0.8s ease;
    touch-action: pan-y;
    outline: none;
  }
  .hero-globe .hero-globe-canvas.is-grabbing {
    cursor: grabbing;
  }
  .hero-globe .hero-globe-canvas.is-pointing {
    cursor: pointer;
  }
  .hero-globe .hero-globe-canvas:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.7);
    outline-offset: 4px;
    border-radius: 50%;
  }
  .hero-globe.is-live .hero-globe-canvas {
    opacity: 1;
  }
  .hero-globe .hero-globe-overlay {
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s ease 0.3s;
  }
  .hero-globe.is-live .hero-globe-overlay {
    opacity: 1;
  }
  .hero-globe .hero-globe-labels {
    position: absolute;
    inset: 0;
  }
  .hero-globe .hero-globe-label,
  .hero-globe .hero-globe-tooltip {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 9px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.7rem;
    line-height: 1.3;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.25s ease;
  }
  .hero-globe .hero-globe-label .name {
    font-weight: 600;
  }
  .hero-globe .hero-globe-label .share {
    opacity: 0.75;
    font-variant-numeric: tabular-nums;
  }
  .hero-globe .hero-globe-label.is-visible {
    opacity: 1;
  }
  .hero-globe .hero-globe-tooltip {
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
    padding: 7px 11px;
    border-radius: 10px;
    background: rgba(16, 12, 48, 0.72);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    z-index: 3;
  }
  .hero-globe .hero-globe-tooltip .country {
    font-weight: 600;
  }
  .hero-globe .hero-globe-tooltip .count,
  .hero-globe .hero-globe-tooltip .probability {
    opacity: 0.75;
    font-size: 0.65rem;
  }
  .hero-globe .hero-globe-tooltip.is-visible {
    opacity: 1;
  }
  .hero-globe .hero-globe-card {
    position: absolute;
    top: 0;
    right: 0;
    width: 232px;
    padding: 13px 15px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(16, 12, 48, 0.72);
    backdrop-filter: blur(12px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
    color: #fff;
    text-align: left;
    z-index: 2;
  }
  .hero-globe .hero-globe-card:empty {
    border-color: transparent;
    background: none;
    backdrop-filter: none;
    box-shadow: none;
  }
  .hero-globe .hero-globe-card-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
  }
  .hero-globe .hero-globe-card-name {
    font-size: 1.26rem;
    font-weight: 700;
    letter-spacing: 0.2px;
  }
  .hero-globe .hero-globe-card-gender {
    padding: 2px 8px;
    border-radius: 40px;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
  }
  .hero-globe .hero-globe-card-gender.is-male {
    background: rgba(90, 162, 255, 0.22);
    color: #5aa2ff;
  }
  .hero-globe .hero-globe-card-gender.is-female {
    background: rgba(255, 111, 177, 0.22);
    color: #ff6fb1;
  }
  .hero-globe .hero-globe-card-gender.is-unknown {
    background: rgba(183, 156, 255, 0.22);
    color: #b79cff;
  }
  .hero-globe .hero-globe-card-metrics {
    display: flex;
    gap: 14px;
    margin: 10px 0;
  }
  .hero-globe .hero-globe-card-metrics .hero-globe-metric {
    display: flex;
    flex-direction: column;
  }
  .hero-globe .hero-globe-card-metrics .hero-globe-metric .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    opacity: 0.6;
  }
  .hero-globe .hero-globe-card-metrics .hero-globe-metric .value {
    font-size: 1.02rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
  }
  .hero-globe .hero-globe-card-subtitle {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    opacity: 0.6;
    margin-bottom: 5px;
  }
  .hero-globe .hero-globe-origins {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .hero-globe .hero-globe-origins li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 3px;
    padding: 3px 8px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
    font-size: 0.78rem;
  }
  .hero-globe .hero-globe-origins li.is-interactive {
    cursor: pointer;
    transition: background 0.18s ease, transform 0.18s ease;
  }
  .hero-globe .hero-globe-origins li.is-interactive:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-1px);
  }
  .hero-globe .hero-globe-origins li.is-interactive:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.7);
    outline-offset: 2px;
  }
  .hero-globe .hero-globe-origins li.is-interactive:active {
    transform: translateY(0);
  }
  .hero-globe .hero-globe-origins .fill {
    position: absolute;
    top: 0;
    bottom: 0;
    inset-inline-start: 0;
    border-radius: 6px;
    transition: width 0.5s ease;
  }
  .hero-globe .hero-globe-origins .fill.is-male {
    background: rgba(90, 162, 255, 0.42);
  }
  .hero-globe .hero-globe-origins .fill.is-female {
    background: rgba(255, 111, 177, 0.42);
  }
  .hero-globe .hero-globe-origins .fill.is-unknown {
    background: rgba(183, 156, 255, 0.42);
  }
  .hero-globe .hero-globe-origins .name {
    position: relative;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: 600;
  }
  .hero-globe .hero-globe-origins .share {
    position: relative;
    opacity: 0.85;
    font-variant-numeric: tabular-nums;
  }
  .hero-globe .hero-globe-chips {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 11px 6px;
    margin-top: 24px;
    min-height: 79px;
    align-content: center;
    pointer-events: auto;
    z-index: 2;
  }
  .hero-globe .hero-globe-chip {
    padding: 5px 12px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.86rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  }
  .hero-globe .hero-globe-chip:hover, .hero-globe .hero-globe-chip:focus-visible {
    background: rgba(255, 255, 255, 0.24);
    transform: translateY(-1px);
  }
  .hero-globe .hero-globe-chip.is-active {
    background: #fff;
    border-color: #fff;
    color: #4b3a91;
  }
  .hero-globe .hero-globe-chip.is-active.is-male {
    background: #5aa2ff;
    border-color: #5aa2ff;
    color: #08183a;
  }
  .hero-globe .hero-globe-chip.is-active.is-female {
    background: #ff6fb1;
    border-color: #ff6fb1;
    color: #3d0a22;
  }
  .hero-globe .hero-globe-chip.is-active.is-unknown {
    background: #b79cff;
    border-color: #b79cff;
    color: #24123f;
  }
  .hero-globe .hero-globe-chip.is-more {
    font-weight: 500;
    opacity: 0.85;
    border-style: dashed;
  }
  .hero-globe .hero-globe-hint {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.65rem;
    letter-spacing: 0.3px;
    opacity: 0.75;
    transition: opacity 0.4s ease;
  }
  .hero-globe .hero-globe-hint.is-hidden {
    opacity: 0;
  }
}
@media screen and (max-width: 992px) {
  .hero-globe {
    --globe-left: 50%;
    --globe-shift: -50%;
    --globe-width: max(100vw, 145%);
  }
  .modern-hero .hero-text {
    padding-right: 0;
  }
  .modern-hero .hero-visual {
    min-width: 0;
    width: 100%;
    display: block;
  }
  .hero-globe {
    max-width: none;
    margin: 0 auto;
  }
}
@media screen and (max-width: 700px) {
  .hero-globe .hero-globe-card-name {
    font-size: 1.39rem;
  }
  .hero-globe .hero-globe-card-gender {
    font-size: 0.83rem;
  }
  .hero-globe .hero-globe-metric .label {
    font-size: 0.77rem;
  }
  .hero-globe .hero-globe-metric .value {
    font-size: 1.13rem;
  }
  .hero-globe .hero-globe-card-subtitle {
    font-size: 0.77rem;
  }
  .hero-globe .hero-globe-origins li {
    font-size: 0.86rem;
  }
  .hero-globe .hero-globe-chip {
    font-size: 0.96rem;
  }
  .hero-globe .hero-globe-label,
  .hero-globe .hero-globe-tooltip {
    font-size: 0.77rem;
  }
  .hero-globe .hero-globe-card {
    position: static;
    width: 100%;
    max-width: 340px;
    margin: -25% auto 0;
  }
  .hero-globe .hero-globe-card:empty {
    min-height: 270px;
  }
  .hero-globe .hero-globe-chips {
    gap: 10px 5px;
    margin-top: 22px;
    min-height: 102px;
  }
  .hero-globe .hero-globe-hint {
    display: none;
  }
}
@media screen and (prefers-reduced-motion: reduce) {
  .hero-globe .hero-globe-canvas,
  .hero-globe .hero-globe-overlay,
  .hero-globe .hero-globe-fallback {
    transition: none;
  }
}
@media screen {
  .integrations-section {
    padding: 4em 0;
    background-color: #f6f8fc;
  }
  .integrations-section h2 {
    margin: 0 0 0.5em;
    font-size: 2.1em;
    text-align: center;
    color: #525b63;
  }
  .integrations-section .integrations-subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #616468;
    max-width: 700px;
    margin: 0 auto 2.5em;
    line-height: 1.6;
  }
  .integrations-section .integrations-cta {
    text-align: center;
    margin-top: 2.5em;
  }
  .integrations-section .integrations-cta p {
    color: #616468;
    margin-bottom: 1em;
    font-size: 1.1em;
  }
  .integrations-grid-variant {
    background: linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
  }
  .integrations-grid-variant .integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5em;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1em;
  }
  .integrations-grid-variant .integration-card {
    display: block;
    text-decoration: none;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
  }
  .integrations-grid-variant .integration-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  }
  .integrations-grid-variant .integration-card:hover .integration-hover {
    opacity: 1;
    transform: translateY(0);
  }
  .integrations-grid-variant .integration-card:hover .integration-logo img {
    transform: scale(1.05);
  }
  .integrations-grid-variant .integration-card-inner {
    padding: 1.5em;
    text-align: center;
    position: relative;
  }
  .integrations-grid-variant .integration-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1em;
  }
  .integrations-grid-variant .integration-logo img {
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: 8px;
  }
  .integrations-grid-variant .integration-info h3 {
    margin: 0 0 0.3em;
    font-size: 1em;
    font-weight: 600;
    color: #333333;
  }
  .integrations-grid-variant .integration-info .integration-category {
    font-size: 0.8em;
    color: #026bc3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
  }
  .integrations-grid-variant .integration-hover {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(2, 107, 195, 0.95) 100%);
    padding: 2em 1em 1em;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
  }
  .integrations-grid-variant .integration-hover .view-btn {
    color: #ffffff;
    font-size: 0.9em;
    font-weight: 500;
  }
  .integrations-carousel-variant {
    background: linear-gradient(41deg, #05aedd 0%, #4c8eef 64%);
    overflow: hidden;
  }
  .integrations-carousel-variant h2,
  .integrations-carousel-variant .integrations-subtitle {
    color: #ffffff;
  }
  .integrations-carousel-variant .integrations-subtitle {
    opacity: 0.9;
  }
  .integrations-carousel-variant .carousel-wrapper {
    position: relative;
    margin: 2em 0;
  }
  .integrations-carousel-variant .carousel-gradient {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
  }
  .integrations-carousel-variant .carousel-gradient.carousel-gradient-left {
    left: 0;
    background: linear-gradient(90deg, rgb(5, 174, 221) 0%, transparent 100%);
  }
  .integrations-carousel-variant .carousel-gradient.carousel-gradient-right {
    right: 0;
    background: linear-gradient(270deg, rgb(76, 142, 239) 0%, transparent 100%);
  }
  .integrations-carousel-variant .integrations-carousel {
    overflow: hidden;
    width: 100%;
  }
  .integrations-carousel-variant .carousel-track {
    display: flex;
    gap: 20px;
    padding: 1em 0;
    will-change: transform;
  }
  .integrations-carousel-variant .carousel-item {
    flex: 0 0 200px;
    text-decoration: none;
  }
  .integrations-carousel-variant .carousel-item:hover .carousel-item-inner {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }
  .integrations-carousel-variant .carousel-item-inner {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5em;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  .integrations-carousel-variant .carousel-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8em;
  }
  .integrations-carousel-variant .carousel-logo img {
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
  }
  .integrations-carousel-variant .carousel-label {
    font-size: 0.95em;
    font-weight: 600;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .integrations-carousel-variant .carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
    margin-top: 1.5em;
  }
  .integrations-carousel-variant .carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  .integrations-carousel-variant .carousel-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
  }
  .integrations-carousel-variant .carousel-btn .material-icons {
    font-size: 24px;
  }
  .integrations-carousel-variant .carousel-indicators {
    display: flex;
    gap: 8px;
  }
  .integrations-carousel-variant .carousel-indicators .indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .integrations-carousel-variant .carousel-indicators .indicator:hover {
    background: rgba(255, 255, 255, 0.5);
  }
  .integrations-carousel-variant .carousel-indicators .indicator.active {
    background: #ffffff;
    transform: scale(1.2);
  }
}
@media screen and (max-width: 992px) {
  .integrations-grid-variant .integrations-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1em;
  }
  .integrations-grid-variant .integration-card-inner {
    padding: 1em;
  }
  .integrations-grid-variant .integration-logo {
    height: 60px;
  }
  .integrations-grid-variant .integration-logo img {
    max-height: 50px;
  }
}
@media screen and (max-width: 768px) {
  .integrations-section {
    padding: 3em 0;
  }
  .integrations-section h2 {
    font-size: 1.6em;
    padding: 0 1em;
  }
  .integrations-section .integrations-subtitle {
    font-size: 1em;
    padding: 0 1em;
    margin-bottom: 2em;
  }
  .integrations-grid-variant .integrations-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 0.5em;
  }
  .integrations-grid-variant .integration-info h3 {
    font-size: 0.9em;
  }
  .integrations-grid-variant .integration-hover {
    display: none;
  }
  .integrations-carousel-variant .carousel-gradient {
    width: 40px;
  }
  .integrations-carousel-variant .carousel-item {
    flex: 0 0 160px;
  }
  .integrations-carousel-variant .carousel-item-inner {
    padding: 1em;
  }
  .integrations-carousel-variant .carousel-logo {
    height: 60px;
  }
  .integrations-carousel-variant .carousel-logo img {
    max-height: 50px;
  }
  .integrations-carousel-variant .carousel-label {
    font-size: 0.85em;
  }
}
@media screen and (max-width: 480px) {
  .integrations-grid-variant .integrations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8em;
  }
  .integrations-grid-variant .integration-card-inner {
    padding: 0.8em;
  }
  .integrations-grid-variant .integration-logo {
    height: 50px;
  }
  .integrations-grid-variant .integration-logo img {
    max-height: 45px;
  }
  .integrations-grid-variant .integration-info h3 {
    font-size: 0.8em;
  }
  .integrations-grid-variant .integration-info .integration-category {
    font-size: 0.7em;
  }
}
@media screen {
  .privacy-policy {
    word-break: break-word;
    line-height: 1.6em;
    font-size: 17px;
  }
  .privacy-policy ul li {
    list-style-type: disc;
    padding-left: 10px;
    margin-left: 20px;
  }
  .privacy-policy h2 {
    font-size: 1.2em;
  }
  .privacy-policy h3 {
    font-size: 1.1em;
  }
  .privacy-policy .disclaimer {
    background: white;
    margin: 40px 0;
    border-radius: 5px;
    padding: 5px;
  }
  .privacy-policy .subcontractor-link {
    display: block;
  }
  .data-processing-agreement .download a {
    margin-top: 5px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 700px) {
  .data-processing-agreement .download a {
    width: 100%;
  }
}
@media screen {
  .mac-window {
    background: #ffffff;
    width: 100%;
    min-height: 100px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
  }
  .mac-window .title {
    background: linear-gradient(top, #ebebeb, #d5d5d5);
    color: #222222;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    height: 20px;
    border-top: 1px solid #f3f1f3;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px 6px 0 0;
  }
  .mac-window .buttons {
    padding: 3px 0 0 8px;
    float: left;
    line-height: 0;
  }
  .mac-window .minimize, .mac-window .zoom, .mac-window .close {
    font-size: 9pt;
    line-height: 11px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    display: inline-block;
    margin-left: 4px;
    vertical-align: 50%;
  }
  .mac-window .close {
    background: #ff5c5c;
    border: 1px solid #e33e41;
  }
  .mac-window .minimize {
    background: #ffbd4c;
    border: 1px solid #e09e3e;
  }
  .mac-window .zoom {
    background: #00ca56;
    border: 1px solid #14ae46;
  }
  .mac-window .content {
    color: #555555;
    font-size: 0.9em;
  }
  .mac-window .content .content-container {
    margin-right: 5px;
    overflow: auto;
  }
  .mac-window .content .clearfix {
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-right: 10px;
  }
  .mac-window .no {
    float: left;
    width: 58px;
    text-align: center;
    background-color: #eeeeee;
    margin-right: 21px;
  }
  .mac-window .first {
    padding-top: 5px;
  }
  .mac-window .last {
    padding-bottom: 5px;
  }
  div.free-plan {
    padding: 3em 0;
  }
  div.free-plan h2 {
    margin: 1em 0;
    font-size: 2.1em;
  }
  div.free-plan .sign-up-now {
    width: 100%;
  }
  div.free-plan .btn-big, div.free-plan p {
    font-size: 1.3em;
  }
  div.free-plan .btn-big {
    max-width: 450px;
  }
  #chat-window {
    position: fixed;
    bottom: 10px;
    right: 30px;
    z-index: 2;
  }
  #chat-window #chat-footer-form {
    margin-bottom: 20px;
    display: none;
    max-width: 600px;
    width: 100%;
  }
  #chat-window #chat-open-button {
    width: 60px;
    height: 60px;
    float: right;
    background-color: rgba(50, 142, 232, 0.6509803922);
    padding: 5px;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-bottom: 20px;
  }
  #chat-window #chat-open-button:hover, #chat-window #chat-open-button:active {
    background-color: rgba(50, 142, 232, 0.7882352941);
  }
  #chat-window #chat-open-button img {
    max-width: 100%;
    max-height: 100%;
  }
}
@media screen and (max-width: 800px) {
  #chat-window {
    display: none;
  }
}
@media screen {
  #cookie_form table {
    font-size: 0.8em;
  }
  #cookie_form table td, #cookie_form table th {
    padding: 2px 5px;
  }
}
@media only screen and (min-width : 601px) {
  #cookie_form table th:nth-child(1), #cookie_form table th:nth-child(2), #cookie_form table th:nth-child(3) {
    min-width: 100px;
  }
  #cookie_form table th:nth-child(5) {
    min-width: 70px;
  }
}
@media screen {
  .input-field input:focus {
    border-bottom: 1px solid #2f739a !important;
    box-shadow: 0 1px 0 0 #2f739a !important;
  }
  .input-field textarea:focus {
    border-bottom: 1px solid #2f739a !important;
    box-shadow: 0 1px 0 0 #2f739a !important;
  }
  .input-field input:focus + label,
  .input-field textarea:focus + label {
    color: #2f739a !important;
  }
  .center {
    text-align: center;
  }
  .z-depth-1 {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16), 0 2px 10px rgba(0, 0, 0, 0.12);
  }
  .z-depth-2 {
    box-shadow: 0 8px 17px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.19);
  }
  .contact-page-modern {
    padding: 80px 0 !important;
    min-height: auto !important;
  }
  .contact-page-modern h2 {
    font-size: 2rem;
  }
  .contact-page-modern .section-header {
    margin-bottom: 60px;
  }
  .contact-page-modern .section-header .header-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
  .contact-page-modern .section-header .header-icon .material-icons {
    font-size: 40px;
    color: #2f739a;
  }
  .contact-page-modern .section-header h1 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin: 20px 0 15px;
  }
  .contact-page-modern .section-header .section-subtitle {
    color: #ffffff;
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
  }
  .contact-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
  }
  .contact-form-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
  }
  .contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
  }
  .info-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
  }
  .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
  }
  .info-card .info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .info-card .info-icon .material-icons {
    font-size: 30px;
    color: white;
  }
  .info-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px 0;
  }
  .info-card p {
    color: #666;
    margin: 0;
    line-height: 1.6;
  }
  .info-link {
    color: #2f739a;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
  }
  .info-link:hover {
    color: #764ba2;
    text-decoration: none;
  }
  .info-link .material-icons {
    font-size: 18px;
  }
  .contact-faq-cta {
    background: white;
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  .contact-faq-cta .cta-icon {
    font-size: 60px;
    color: #2f739a;
    margin-bottom: 20px;
  }
  .contact-faq-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 15px 0;
  }
  .contact-faq-cta p {
    color: #666;
    font-size: 1.1rem;
    margin: 0 0 30px 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  .btn-outline-modern {
    border: 2px solid #2f739a;
    color: #2f739a;
    background: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
  }
  .btn-outline-modern:hover {
    background: #2f739a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(90, 103, 216, 0.4);
  }
  .contact-faq-cta .btn-outline-modern {
    border: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.25);
    transition: all 0.25s ease;
  }
  .contact-faq-cta .btn-outline-modern .material-icons {
    color: white;
    font-size: 20px;
  }
  .contact-faq-cta .btn-outline-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(102, 126, 234, 0.35);
    filter: brightness(1.02);
  }
  .contact-additional-info {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
  }
  .contact-additional-info .section-header {
    margin-bottom: 40px;
  }
  .contact-additional-info .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
  }
  .contact-additional-info .section-header p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
  }
  .contact-additional-info .info-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  .contact-additional-info .info-card:hover {
    transform: translateY(-5px);
  }
  .contact-additional-info .info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 15px 0;
    text-align: center;
  }
  .contact-additional-info .info-card p {
    text-align: center;
  }
  .contact-additional-info .info-card p:last-child {
    color: #667eea;
    font-weight: 600;
    font-size: 1.1rem;
  }
  .contact-additional-info .info-card p a {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
  }
  .contact-additional-info .info-card p a:hover {
    text-decoration: underline;
  }
  .contact-additional-info .info-card p a .material-icons {
    font-size: 18px;
  }
  .legal-info-section {
    background: #f9fafb;
    padding: 60px 0;
  }
  .legal-info-section .section-header {
    margin-bottom: 50px;
  }
  .legal-info-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
  }
  .legal-info-section .section-header p {
    color: #666;
    font-size: 1.1rem;
  }
  .legal-info-section .legal-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
  }
  .legal-info-section .legal-card {
    background: white;
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  .legal-info-section .legal-card:hover {
    transform: translateY(-5px);
  }
  .legal-info-section .legal-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 15px 0;
  }
  .legal-info-section .legal-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .legal-info-section .legal-card p:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 992px) {
  .contact-page-modern .section-header h1 {
    font-size: 2.2rem;
  }
  .contact-form-card {
    padding: 30px 20px;
  }
}
@media screen and (max-width: 600px) {
  .contact-page-modern {
    padding: 40px 0;
  }
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact-faq-cta {
    padding: 30px 20px;
  }
}
@media screen and (max-width: 768px) {
  .legal-info-section .legal-blocks {
    grid-template-columns: 1fr;
  }
}
@media screen {
  .contact-form .input-field input:focus {
    border-bottom: 1px solid #2f739a !important;
    box-shadow: 0 1px 0 0 #2f739a !important;
  }
  .contact-form .input-field textarea:focus {
    border-bottom: 1px solid #2f739a !important;
    box-shadow: 0 1px 0 0 #2f739a !important;
  }
  .blog-modern {
    padding: 80px 0;
  }
  .blog-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
  }
  .blog-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    text-decoration: none;
  }
  .blog-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  }
  .blog-card-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
  }
  .blog-card-image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
  }
  .blog-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .blog-card-meta {
    margin-bottom: 15px;
  }
  .blog-card-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #667eea;
    font-size: 0.9rem;
    font-weight: 600;
  }
  .blog-card-date .material-icons {
    font-size: 18px;
    line-height: 18px;
  }
  .blog-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 15px 0;
    line-height: 1.3;
  }
  .blog-card-excerpt {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
  }
  .blog-card-footer {
    padding-top: 15px;
    border-top: 2px solid #f0f0f0;
  }
  .btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  .btn-read-more:hover {
    gap: 12px;
    color: #764ba2;
  }
  .btn-read-more .material-icons {
    font-size: 20px;
    line-height: 20px;
  }
  .blog-pagination {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
  }
  .blog-nav-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    background: white;
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  .blog-nav-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  }
  .blog-nav-button .material-icons {
    font-size: 20px;
  }
  .blog-detail-modern {
    padding: 60px 0 80px;
    min-height: 100vh;
  }
  .blog-detail-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.15);
    margin-bottom: 40px;
  }
  .blog-detail-hero-image {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
  }
  .blog-detail-hero-image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  }
  .blog-detail-header {
    padding: 50px;
    border-bottom: 2px solid #f0f0f0;
  }
  .blog-detail-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
    margin: 20px 0 20px 0;
  }
  .blog-detail-meta {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    color: #999;
    font-size: 0.95rem;
  }
  .blog-detail-meta time,
  .blog-detail-meta address {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .blog-detail-meta .material-icons {
    font-size: 18px;
    color: #667eea;
    line-height: 18px;
  }
  .blog-author {
    font-style: normal;
  }
  .blog-author a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  .blog-author a:hover {
    color: #764ba2;
  }
  .blog-detail-content {
    padding: 50px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
  }
  .blog-detail-content h2,
  .blog-detail-content h3,
  .blog-detail-content h4 {
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
  }
  .blog-detail-content h2 {
    font-size: 2rem;
  }
  .blog-detail-content h3 {
    font-size: 1.5rem;
  }
  .blog-detail-content h4 {
    font-size: 1.2rem;
  }
  .blog-detail-content p {
    margin-bottom: 20px;
  }
  .blog-detail-content a:not(.btn) {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
  }
  .blog-detail-content a:not(.btn):hover {
    border-bottom-color: #667eea;
  }
  .blog-detail-content ul,
  .blog-detail-content ol {
    margin: 20px 0;
    padding-left: 30px;
  }
  .blog-detail-content li {
    margin-bottom: 10px;
  }
  .blog-detail-content pre {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 12px;
    overflow-x: auto;
    margin: 20px 0;
    border-left: 4px solid #667eea;
  }
  .blog-detail-content code {
    background: #f5f5f5;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: "Monaco", "Courier New", monospace;
    font-size: 0.9em;
    color: #d63384;
  }
  .blog-detail-append {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
  }
  .blog-detail-share {
    padding: 30px 50px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    border-top: 2px solid #f0f0f0;
  }
  .blog-detail-share h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px 0 !important;
  }
  .blog-detail-share h3 .material-icons {
    color: #667eea;
    font-size: 24px;
    line-height: 24px;
  }
  .share-buttons-wrapper {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  .blog-detail-actions {
    display: flex;
    gap: 15px;
    padding: 30px 50px;
    flex-wrap: wrap;
  }
  .btn-blog-back,
  .btn-blog-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
  }
  .btn-blog-back {
    background: #f5f5f5;
    color: #333;
    border: 2px solid #e0e0e0;
  }
  .btn-blog-back:hover {
    background: #e0e0e0;
    transform: translateX(-5px);
  }
  .btn-blog-contact {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: 2px solid transparent;
  }
  .btn-blog-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
  }
  .btn-blog-back .material-icons,
  .btn-blog-contact .material-icons {
    font-size: 20px;
    line-height: 20px;
  }
}
@media screen and (max-width: 768px) {
  .blog-grid-modern {
    grid-template-columns: 1fr;
  }
  .blog-detail-hero-image {
    height: 250px;
  }
  .blog-detail-header {
    padding: 30px 20px;
  }
  .blog-detail-header h1 {
    font-size: 1.8rem;
  }
  .blog-detail-content {
    padding: 30px 20px;
    font-size: 1rem;
  }
  .blog-detail-share {
    padding: 20px;
  }
  .blog-detail-actions {
    padding: 20px;
    flex-direction: column;
  }
  .btn-blog-back,
  .btn-blog-contact {
    width: 100%;
    justify-content: center;
  }
  .blog-pagination {
    flex-direction: column;
    align-items: stretch;
    padding: 0 15px;
  }
  .blog-nav-button {
    width: 100%;
    justify-content: center;
  }
}
#stcm-wrapper {
  --fontFamily: Muli, sans-serif;
  --primaryColor: #026bc3;
  --backgroundColor: #ffffff;
  --textColor: #333333;
  --backdropBackgroundColor: rgba(0, 0, 0, 0.45);
  --backdropBackgroundBlur: 0px;
  --boxShadow: 0 -2px 24px rgba(0, 0, 0, 0.12);
  --iconColor: #026bc3;
  --iconBackgroundColor: #ffffff;
}

#stcm-banner a.stcm-logo,
#stcm-modal footer a.stcm-credit-link {
  display: none;
}

#stcm-banner {
  box-shadow: var(--boxShadow);
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px 28px;
  width: 1180px;
}
#stcm-banner p {
  color: #5f5f5f;
  font-size: 15px;
  line-height: 23px;
  margin: 0;
}
#stcm-banner a {
  background-color: transparent;
}
#stcm-banner .stcm-actions {
  margin-top: 16px;
}
#stcm-banner .stcm-preferences-button {
  padding: 0;
}
#stcm-banner .stcm-preferences-button span {
  text-decoration: underline;
  font-size: 14px;
}
#stcm-banner .stcm-actions-row {
  flex-grow: 0;
  justify-content: flex-start;
}
@media (min-width: 900px) {
  #stcm-banner {
    display: flex;
    align-items: center;
    gap: 32px;
  }
  #stcm-banner p {
    flex: 1 1 auto;
  }
  #stcm-banner .stcm-actions {
    margin-top: 0;
    flex: 0 0 auto;
  }
  #stcm-banner .stcm-button {
    min-width: 190px;
  }
}

#stcm-wrapper .stcm-button {
  border-radius: 24px;
  font-family: var(--fontFamily);
  font-weight: 600;
  font-size: 15px;
  padding: 11px 24px;
  transition: background-color 150ms ease-out, color 150ms ease-out;
}

#stcm-wrapper .stcm-button-primary:hover {
  background-color: #02579f;
  border-color: #02579f;
  color: #ffffff;
}

#stcm-wrapper:has(#stcm-modal[style*=flex])::before {
  content: "";
  position: fixed;
  inset: 0;
  background-color: var(--backdropBackgroundColor);
  pointer-events: none;
}

#stcm-modal {
  border-radius: 8px;
  position: relative;
}
#stcm-modal h1 {
  font-weight: 700;
  font-size: 21px;
}
#stcm-modal p {
  color: #5f5f5f;
  opacity: 1;
  font-size: 15px;
  line-height: 23px;
}
#stcm-modal fieldset {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 24px;
  row-gap: 6px;
  align-items: center;
  margin: 0 0 20px;
  padding: 0 0 20px;
  border-bottom: 1px solid #e8ebee;
}
#stcm-modal fieldset:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
#stcm-modal legend {
  float: left;
  grid-column: 1;
  grid-row: 1;
  color: #333333;
  margin: 0;
}
#stcm-modal .stcm-consent-row {
  display: contents;
}
#stcm-modal .stcm-consent-description {
  grid-column: 1;
  grid-row: 2;
  min-width: 0;
  color: #5f5f5f;
  font-size: 14px;
  line-height: 21px;
}
#stcm-modal .stcm-toggle {
  grid-column: 2;
  grid-row: 1;
}
#stcm-modal .stcm-disclosure {
  margin-top: 10px;
  font-size: 13px;
}
#stcm-modal .stcm-disclosure summary {
  cursor: pointer;
  color: #026bc3;
  font-weight: 600;
  padding: 2px 0;
  width: fit-content;
}
#stcm-modal .stcm-disclosure summary:focus-visible {
  outline: 2px solid #026bc3;
  outline-offset: 2px;
  border-radius: 3px;
}
#stcm-modal .stcm-disclosure .stcm-disclosure-scroll {
  overflow-x: auto;
  margin-top: 8px;
  border: 1px solid #e8ebee;
  border-radius: 6px;
}
#stcm-modal .stcm-disclosure table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12.5px;
  line-height: 18px;
}
#stcm-modal .stcm-disclosure th,
#stcm-modal .stcm-disclosure td {
  text-align: left;
  vertical-align: top;
  padding: 7px 10px;
  border-bottom: 1px solid #e8ebee;
}
#stcm-modal .stcm-disclosure th {
  color: #333333;
  font-weight: 700;
  white-space: nowrap;
  background: #f5f5f5;
}
#stcm-modal .stcm-disclosure td {
  color: #5f5f5f;
}
#stcm-modal .stcm-disclosure tbody tr:last-child td {
  border-bottom: 0;
}
#stcm-modal .stcm-disclosure code {
  display: inline !important;
  padding: 0 !important;
  margin: 0 !important;
  position: static !important;
  top: auto !important;
  background: none;
  font-family: "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 12px;
  color: #333333;
  white-space: nowrap;
}
#stcm-modal .stcm-disclosure tbody td:first-child {
  white-space: nowrap;
}
#stcm-modal .stcm-disclosure .stcm-storage-kind {
  display: block;
  margin-top: 3px;
  color: #616468;
  font-size: 11px;
  font-style: italic;
  white-space: normal;
}
@media (max-width: 560px) {
  #stcm-modal .stcm-disclosure .stcm-disclosure-scroll {
    overflow-x: visible;
  }
  #stcm-modal .stcm-disclosure thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }
  #stcm-modal .stcm-disclosure table,
  #stcm-modal .stcm-disclosure tbody {
    display: block;
    width: 100%;
  }
  #stcm-modal .stcm-disclosure tr {
    display: block;
    padding: 8px 4px;
    border-bottom: 1px solid #e8ebee;
  }
  #stcm-modal .stcm-disclosure tbody tr:last-child {
    border-bottom: 0;
  }
  #stcm-modal .stcm-disclosure td {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 8px;
    padding: 3px 8px;
    border-bottom: 0;
    overflow-wrap: anywhere;
  }
  #stcm-modal .stcm-disclosure td::before {
    content: attr(data-label);
    color: #333333;
    font-weight: 700;
  }
  #stcm-modal .stcm-disclosure td:first-child {
    display: block;
    margin-bottom: 4px;
  }
  #stcm-modal .stcm-disclosure td:first-child::before {
    display: block;
    margin-bottom: 2px;
  }
  #stcm-modal .stcm-disclosure code {
    white-space: normal;
    overflow-wrap: anywhere;
  }
}
#stcm-modal .stcm-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
#stcm-modal .stcm-toggle {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 10px;
  box-sizing: border-box;
  width: auto;
  height: 24px;
  overflow: visible;
}
#stcm-modal .stcm-toggle-track::before,
#stcm-modal .stcm-toggle-track::after {
  content: none;
}
#stcm-modal .stcm-toggle-track {
  position: static;
  order: 2;
  flex: 0 0 44px;
  width: 44px;
  height: 24px;
  border-radius: 12px;
  background: #e4e7ea;
  transition: background-color 150ms ease-out;
}
#stcm-modal .stcm-toggle-thumb {
  height: 20px;
  width: 20px;
  top: 2px;
  left: auto;
  right: 22px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25), inset 0 0 0 1px rgba(0, 0, 0, 0.08);
  transition: right 150ms ease-out;
}
#stcm-modal .stcm-toggle input:checked ~ .stcm-toggle-thumb {
  left: auto;
  right: 2px;
}
#stcm-modal .stcm-toggle input:checked + .stcm-toggle-track {
  background: #026bc3;
}
#stcm-modal .stcm-toggle-off,
#stcm-modal .stcm-toggle-on {
  position: static;
  order: 1;
  top: auto;
  left: auto;
  right: auto;
  width: auto;
  align-items: center;
  height: 24px;
  line-height: 1;
  white-space: nowrap;
  flex: 0 0 auto;
  min-width: max-content;
  text-align: right;
  text-transform: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  opacity: 1;
}
#stcm-modal .stcm-toggle-off::after,
#stcm-modal .stcm-toggle-on::after {
  flex: 0 0 auto;
  white-space: nowrap;
}
#stcm-modal .stcm-toggle-off {
  display: flex;
  color: #525b63;
}
#stcm-modal .stcm-toggle-on {
  display: none;
  color: #026bc3;
}
#stcm-modal .stcm-toggle input:checked ~ .stcm-toggle-off {
  display: none;
  right: auto;
  opacity: 0;
}
#stcm-modal .stcm-toggle input:checked ~ .stcm-toggle-on {
  display: flex;
  right: auto;
  opacity: 1;
}
#stcm-modal .stcm-toggle input:disabled + .stcm-toggle-track {
  opacity: 1;
  filter: none;
  background: #c9d2da;
  cursor: default;
}
#stcm-modal .stcm-toggle input:disabled ~ .stcm-toggle-on,
#stcm-modal .stcm-toggle input:disabled ~ .stcm-toggle-off {
  color: #616468;
}
#stcm-modal .stcm-toggle:has(input:disabled) {
  cursor: default;
}
#stcm-modal .stcm-toggle:focus-within {
  box-shadow: none;
  outline: 2px solid #026bc3;
  outline-offset: 2px;
  border-radius: 12px;
}
#stcm-modal footer .stcm-button {
  flex: 0 0 auto;
}
#stcm-modal .stcm-consent-id,
#stcm-modal p.stcm-consent-id:last-of-type {
  margin: 20px 0 0;
  font-size: 11px;
  line-height: 16px;
  color: #616468;
  opacity: 1;
  user-select: all;
  word-break: break-all;
}
#stcm-modal .stcm-modal-reject-all,
#stcm-modal .stcm-modal-reject-all:link {
  background-color: transparent;
  color: #026bc3;
  border-color: #026bc3;
}
#stcm-modal .stcm-modal-reject-all:hover {
  background-color: rgba(51, 161, 226, 0.08);
  color: #02579f;
  border-color: #02579f;
}

@media print {
  #stcm-wrapper {
    display: none !important;
  }
}
#stcm-icon {
  display: none !important;
}

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