@charset "UTF-8";
.togo-landing-container {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (max-width: 1024px) {
  .togo-landing-container {
    padding-left: 0.938rem;
    padding-right: 0.938rem;
  }
}

.demos-grid-section .togo-landing-container {
  padding-left: 0rem;
  padding-right: 0rem;
}
@media (max-width: 1024px) {
  .demos-grid-section .togo-landing-container {
    padding-left: 0.938rem;
    padding-right: 0.938rem;
  }
}

.togo-text-primary, .text-primary {
  color: #fd4621;
}

/**
 * Togo Landing Page - Animations Utility
 */
.togo-animate-elem {
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}
.togo-animate-elem.opacity-0 {
  opacity: 0;
}
.togo-animate-elem.opacity-100 {
  opacity: 1;
}
.togo-animate-elem.translate-y-0 {
  transform: translateY(0);
}
.togo-animate-elem.translate-y-10 {
  transform: translateY(2.5rem);
}
.togo-animate-elem.translate-y-20 {
  transform: translateY(5rem);
}
.togo-animate-elem.translate-y-4 {
  transform: translateY(1rem);
}
.togo-animate-elem.delay-100 {
  transition-delay: 100ms;
}
.togo-animate-elem.delay-200 {
  transition-delay: 200ms;
}
.togo-animate-elem.delay-300 {
  transition-delay: 300ms;
}
.togo-animate-elem.delay-400 {
  transition-delay: 400ms;
}
.togo-animate-elem.delay-500 {
  transition-delay: 500ms;
}
.togo-animate-elem.delay-700 {
  transition-delay: 700ms;
}
.togo-animate-elem.delay-1000 {
  transition-delay: 1000ms;
}

.js-enabled .togo-animate-elem.opacity-0 {
  visibility: hidden;
}

.js-enabled .togo-animate-elem.opacity-100 {
  visibility: visible;
}

.togo-landing-hero {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 5rem;
}
@media (max-width: 1023px) {
  .togo-landing-hero {
    overflow: hidden;
  }
}
@media (min-width: 1024px) {
  .togo-landing-hero {
    padding-top: 12rem;
    padding-bottom: 8rem;
  }
}

.togo-hero-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .togo-hero-layout {
    flex-direction: row;
    gap: 6rem;
  }
}

.togo-hero-content {
  text-align: left;
  z-index: 10;
  position: relative;
}
@media (min-width: 1024px) {
  .togo-hero-content {
    width: 50%;
  }
}
.togo-hero-content h1 {
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}
@media (min-width: 768px) {
  .togo-hero-content h1 {
    font-size: 3rem;
    line-height: 1;
  }
}
@media (min-width: 1024px) {
  .togo-hero-content h1 {
    font-size: 3.75rem;
    line-height: 1;
  }
}
.togo-hero-content p {
  font-size: 1.125rem;
  color: #475569;
  margin-bottom: 2rem;
  line-height: 1.625;
  max-width: 36rem;
}

.togo-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background-color: #dcfce7;
  color: #15803d;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.togo-hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
@media (min-width: 640px) {
  .togo-hero-buttons {
    flex-direction: row;
  }
}

.togo-btn-primary {
  width: 100%;
  padding: 1rem 2rem;
  background-color: #fd4621;
  color: #ffffff;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(253, 70, 33, 0.2);
  text-align: center;
}
@media (min-width: 640px) {
  .togo-btn-primary {
    width: auto;
  }
}
.togo-btn-primary:hover {
  background-color: #e63d1b;
  color: #ffffff;
}

.togo-btn-secondary {
  width: 100%;
  padding: 1rem 2rem;
  background-color: #ffffff;
  color: #0f172a;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  text-align: center;
}
@media (min-width: 640px) {
  .togo-btn-secondary {
    width: auto;
  }
}
.togo-btn-secondary:hover {
  border-color: #fd4621;
}

.togo-hero-brands {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  opacity: 0.4;
}
.togo-hero-brands span {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
  display: block;
}
.togo-hero-brands .togo-brands-icons {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  font-size: 1.875rem;
}

.togo-hero-graphics {
  width: 100%;
  position: relative;
}
@media (min-width: 1024px) {
  .togo-hero-graphics {
    width: 50%;
  }
}
.togo-hero-graphics .togo-browser-mockup {
  position: relative;
  z-index: 10;
  background: #ffffff;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transform: rotate(0);
  transition: transform 0.7s;
  margin-left: 15px;
}
@media (min-width: 1024px) {
  .togo-hero-graphics .togo-browser-mockup {
    transform: rotate(-2deg);
  }
}
.togo-hero-graphics .togo-browser-mockup:hover {
  transform: rotate(0);
}
.togo-hero-graphics .togo-browser-mockup .browser-header {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.togo-hero-graphics .togo-browser-mockup .browser-header .dots {
  display: flex;
  gap: 0.375rem;
}
.togo-hero-graphics .togo-browser-mockup .browser-header .dots div {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
}
.togo-hero-graphics .togo-browser-mockup .browser-header .dots div:nth-child(1) {
  background: #FF5F56;
}
.togo-hero-graphics .togo-browser-mockup .browser-header .dots div:nth-child(2) {
  background: #FFBD2E;
}
.togo-hero-graphics .togo-browser-mockup .browser-header .dots div:nth-child(3) {
  background: #27C93F;
}
.togo-hero-graphics .togo-browser-mockup .browser-header .url-bar {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.375rem;
  padding: 0.25rem 4rem;
  font-size: 0.625rem;
  color: #94a3b8;
  font-weight: 500;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.togo-hero-graphics .togo-browser-mockup .browser-body {
  position: relative;
  aspect-ratio: 16/10;
  background: #f1f5f9;
  overflow: hidden;
}
.togo-hero-graphics .togo-browser-mockup .browser-body > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.togo-hero-graphics .togo-browser-mockup .browser-body .mock-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
}
.togo-hero-graphics .togo-browser-mockup .browser-body .mock-nav .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
}
.togo-hero-graphics .togo-browser-mockup .browser-body .mock-nav .links {
  display: flex;
  gap: 1rem;
  font-size: 0.5625rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.togo-hero-graphics .togo-browser-mockup .browser-body .mock-hero {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.1);
}
.togo-hero-graphics .togo-browser-mockup .browser-body .mock-hero h2 {
  color: #ffffff;
  font-size: 1.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .togo-hero-graphics .togo-browser-mockup .browser-body .mock-hero h2 {
    font-size: 2.25rem;
  }
}
.togo-hero-graphics .togo-browser-mockup .browser-body .mock-hero p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.75rem;
  max-width: 24rem;
  margin-bottom: 2rem;
  font-weight: 500;
}
.togo-hero-graphics .togo-browser-mockup .browser-body .mock-hero .mock-search {
  width: 100%;
  max-width: 32rem;
  background: #ffffff;
  padding: 0.625rem;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transform: translateY(1rem);
}
.togo-hero-graphics .togo-browser-mockup .browser-body .mock-hero .mock-search .field {
  flex: 1;
  padding: 0.5rem 0.75rem;
  border-right: 1px solid #f1f5f9;
  text-align: left;
}
.togo-hero-graphics .togo-browser-mockup .browser-body .mock-hero .mock-search .field label {
  font-size: 0.5rem;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.125rem;
  display: block;
}
.togo-hero-graphics .togo-browser-mockup .browser-body .mock-hero .mock-search .field span {
  font-size: 0.75rem;
  font-weight: 600;
  color: #334155;
  display: block;
}
.togo-hero-graphics .togo-browser-mockup .browser-body .mock-hero .mock-search button {
  background: #fd4621;
  color: #ffffff;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: none;
  cursor: pointer;
}
.togo-hero-graphics .togo-browser-mockup .browser-body .mock-hero .mock-search button i {
  font-size: 0.75rem;
}
.togo-hero-graphics .togo-mobile-mockup {
  position: absolute;
  bottom: -3rem;
  left: 0rem;
  z-index: 20;
  width: 9rem;
  aspect-ratio: 9/19;
  background: #0f172a;
  border-radius: 2.25rem;
  padding: 0.625rem;
  border: 5px solid #1e293b;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: rotate(0);
  transition: transform 0.7s;
}
@media (min-width: 768px) {
  .togo-hero-graphics .togo-mobile-mockup {
    width: 14rem;
  }
}
@media (min-width: 1024px) {
  .togo-hero-graphics .togo-mobile-mockup {
    left: -4rem;
    transform: rotate(4deg);
  }
}
.togo-hero-graphics .togo-mobile-mockup:hover {
  transform: rotate(0);
}
.togo-hero-graphics .togo-mobile-mockup .screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 1.75rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.togo-hero-graphics .togo-mobile-mockup .screen .img-area {
  height: 45%;
  position: relative;
}
.togo-hero-graphics .togo-mobile-mockup .screen .img-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.togo-hero-graphics .togo-mobile-mockup .screen .img-area .back-btn {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 1.5rem;
  height: 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.625rem;
}
.togo-hero-graphics .togo-mobile-mockup .screen .content-area {
  flex: 1;
  padding: 1rem;
  background: #ffffff;
  margin-top: -1rem;
  border-radius: 1rem 1rem 0 0;
  position: relative;
  z-index: 10;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.05);
}
.togo-hero-graphics .togo-mobile-mockup .screen .content-area .header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.togo-hero-graphics .togo-mobile-mockup .screen .content-area .header .badge {
  font-size: 0.5rem;
  background: rgba(253, 70, 33, 0.1);
  color: #fd4621;
  font-weight: 600;
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
  text-transform: uppercase;
}
.togo-hero-graphics .togo-mobile-mockup .screen .content-area .header .rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.5rem;
  font-weight: 600;
}
.togo-hero-graphics .togo-mobile-mockup .screen .content-area .header .rating i {
  color: #facc15;
}
.togo-hero-graphics .togo-mobile-mockup .screen .content-area h3 {
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.25;
  color: #0f172a;
}
.togo-hero-graphics .togo-mobile-mockup .screen .content-area .meta {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.togo-hero-graphics .togo-mobile-mockup .screen .content-area .meta div {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #94a3b8;
  font-size: 0.5rem;
  font-weight: 500;
}
.togo-hero-graphics .togo-mobile-mockup .screen .content-area p {
  font-size: 0.5625rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.togo-hero-graphics .togo-mobile-mockup .screen .content-area .bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem;
  background: #ffffff;
  border-top: 1px solid #f1f5f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.togo-hero-graphics .togo-mobile-mockup .screen .content-area .bottom-bar .price span {
  display: block;
  font-size: 0.4375rem;
  color: #94a3b8;
  text-transform: uppercase;
  font-weight: 600;
}
.togo-hero-graphics .togo-mobile-mockup .screen .content-area .bottom-bar .price strong {
  display: block;
  font-size: 0.75rem;
  color: #0f172a;
  font-weight: 600;
}
.togo-hero-graphics .togo-mobile-mockup .screen .content-area .bottom-bar .btn {
  background: #fd4621;
  color: #ffffff;
  font-size: 0.5625rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: none;
}
.togo-hero-graphics .togo-mobile-mockup .notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 5rem;
  height: 1.25rem;
  background: #0f172a;
  border-radius: 0 0 1rem 1rem;
  z-index: 30;
}
.togo-hero-graphics .togo-floating-toast {
  position: absolute;
  top: 2.5rem;
  right: -2rem;
  display: none;
  background: #ffffff;
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  z-index: 20;
  animation: togo-bounce 2s infinite;
}
@media (min-width: 1024px) {
  .togo-hero-graphics .togo-floating-toast {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
}
.togo-hero-graphics .togo-floating-toast .icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: #f0fdf4;
  color: #15803d;
  display: flex;
  align-items: center;
  justify-content: center;
}
.togo-hero-graphics .togo-floating-toast .icon i {
  font-size: 0.875rem;
}
.togo-hero-graphics .togo-floating-toast .text strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #0f172a;
}
.togo-hero-graphics .togo-floating-toast .text span {
  display: block;
  font-size: 0.625rem;
  font-weight: 500;
  color: #64748b;
}

@keyframes togo-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-25%);
  }
}
.togo-hero-blur {
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  filter: blur(80px);
}
.togo-hero-blur.blur-top {
  top: -2.5rem;
  right: -2.5rem;
  width: 10rem;
  height: 10rem;
  background: rgba(253, 70, 33, 0.1);
}
.togo-hero-blur.blur-bottom {
  bottom: -2.5rem;
  left: -2.5rem;
  width: 16rem;
  height: 16rem;
  background: rgba(253, 70, 33, 0.1);
}

.togo-landing-navbar-widget .togo-landing-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #E5E7EB;
}
.togo-landing-navbar-widget .togo-landing-navbar .navbar-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 1024px) {
  .togo-landing-navbar-widget .togo-landing-navbar .navbar-container {
    padding: 0 2rem;
  }
}
.togo-landing-navbar-widget .togo-landing-navbar .navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}
@media (min-width: 768px) {
  .togo-landing-navbar-widget .togo-landing-navbar .navbar-inner {
    height: 5rem;
  }
}
.togo-landing-navbar-widget .navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  text-decoration: none;
}
.togo-landing-navbar-widget .navbar-logo .logo-icon {
  width: 2rem;
  height: 2rem;
  background: #fd4621;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(253, 70, 33, 0.2);
}
@media (min-width: 768px) {
  .togo-landing-navbar-widget .navbar-logo .logo-icon {
    width: 2.25rem;
    height: 2.25rem;
  }
}
.togo-landing-navbar-widget .navbar-logo .logo-icon i {
  color: #ffffff;
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .togo-landing-navbar-widget .navbar-logo .logo-icon i {
    font-size: 1rem;
  }
}
.togo-landing-navbar-widget .navbar-logo .logo-img {
  max-height: 2.25rem;
  width: auto;
  object-fit: contain;
  display: block;
}
@media (min-width: 768px) {
  .togo-landing-navbar-widget .navbar-logo .logo-img {
    max-height: 2.75rem;
  }
}
.togo-landing-navbar-widget .navbar-logo .logo-text {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #0f172a;
}
@media (min-width: 768px) {
  .togo-landing-navbar-widget .navbar-logo .logo-text {
    font-size: 1.5rem;
  }
}
.togo-landing-navbar-widget .navbar-menu-desktop {
  display: none;
}
@media (min-width: 1024px) {
  .togo-landing-navbar-widget .navbar-menu-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: 1rem;
    font-weight: 500;
    color: #475569;
  }
}
.togo-landing-navbar-widget .navbar-menu-desktop a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
  text-transform: capitalize;
  position: relative;
}
.togo-landing-navbar-widget .navbar-menu-desktop a:hover, .togo-landing-navbar-widget .navbar-menu-desktop a.current-menu-item {
  color: #fd4621;
}
.togo-landing-navbar-widget .navbar-menu-desktop a .active-indicator {
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fd4621;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.togo-landing-navbar-widget .navbar-menu-desktop a:hover .active-indicator, .togo-landing-navbar-widget .navbar-menu-desktop a.current-menu-item .active-indicator {
  transform: scaleX(1);
}
.togo-landing-navbar-widget .navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .togo-landing-navbar-widget .navbar-actions {
    gap: 1rem;
  }
}
.togo-landing-navbar-widget .navbar-actions .actions-desktop {
  display: none;
}
@media (min-width: 640px) {
  .togo-landing-navbar-widget .navbar-actions .actions-desktop {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-right: 0.5rem;
  }
}
.togo-landing-navbar-widget .navbar-actions .actions-desktop .btn-login {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
  transition: color 0.3s ease;
}
.togo-landing-navbar-widget .navbar-actions .actions-desktop .btn-login:hover {
  color: #fd4621;
}
.togo-landing-navbar-widget .navbar-actions .actions-desktop .btn-get-started {
  background: #fd4621;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.625rem 1.25rem;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.togo-landing-navbar-widget .navbar-actions .actions-desktop .btn-get-started:hover {
  background: #e63d1b;
}
.togo-landing-navbar-widget .navbar-actions .mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: #F8FAFC;
  border: 1px solid #F1F5F9;
  color: #0F172A;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (min-width: 1024px) {
  .togo-landing-navbar-widget .navbar-actions .mobile-menu-toggle {
    display: none;
  }
}
.togo-landing-navbar-widget .navbar-actions .mobile-menu-toggle:hover {
  color: #fd4621;
}
.togo-landing-navbar-widget .navbar-actions .mobile-menu-toggle i {
  font-size: 1.125rem;
}
.togo-landing-navbar-widget .togo-offcanvas-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  transition: opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}
.togo-landing-navbar-widget .togo-offcanvas-menu.active {
  opacity: 1;
  pointer-events: auto;
}
.togo-landing-navbar-widget .togo-offcanvas-menu.active .offcanvas-content {
  transform: translateX(0);
}
.togo-landing-navbar-widget .togo-offcanvas-menu .offcanvas-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
}
.togo-landing-navbar-widget .togo-offcanvas-menu .offcanvas-content {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 280px;
  background: #ffffff;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateX(100%);
  display: flex;
  flex-col: column;
  flex-direction: column;
}
@media (min-width: 640px) {
  .togo-landing-navbar-widget .togo-offcanvas-menu .offcanvas-content {
    width: 320px;
  }
}
.togo-landing-navbar-widget .togo-offcanvas-menu .offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid #F1F5F9;
}
.togo-landing-navbar-widget .togo-offcanvas-menu .offcanvas-header .header-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.togo-landing-navbar-widget .togo-offcanvas-menu .offcanvas-header .header-logo .logo-icon {
  width: 2rem;
  height: 2rem;
  background: #fd4621;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.togo-landing-navbar-widget .togo-offcanvas-menu .offcanvas-header .header-logo .logo-icon i {
  color: #ffffff;
  font-size: 0.75rem;
}
.togo-landing-navbar-widget .togo-offcanvas-menu .offcanvas-header .header-logo .logo-img {
  max-height: 2rem;
  width: auto;
  object-fit: contain;
  display: block;
}
.togo-landing-navbar-widget .togo-offcanvas-menu .offcanvas-header .header-logo .logo-text {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}
.togo-landing-navbar-widget .togo-offcanvas-menu .offcanvas-header .btn-close {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.togo-landing-navbar-widget .togo-offcanvas-menu .offcanvas-header .btn-close:hover {
  background: #F8FAFC;
}
.togo-landing-navbar-widget .togo-offcanvas-menu .offcanvas-header .btn-close i {
  color: #94A3B8;
  font-size: 1.25rem;
}
.togo-landing-navbar-widget .togo-offcanvas-menu .offcanvas-body {
  flex: 1;
  overflow-y: auto;
  padding: 2rem 1.5rem;
}
.togo-landing-navbar-widget .togo-offcanvas-menu .offcanvas-body .nav-label {
  font-size: 10px;
  font-weight: 600;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  padding: 0 1rem;
}
.togo-landing-navbar-widget .togo-offcanvas-menu .offcanvas-body .mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.togo-landing-navbar-widget .togo-offcanvas-menu .offcanvas-body .mobile-nav-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-radius: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.togo-landing-navbar-widget .togo-offcanvas-menu .offcanvas-body .mobile-nav-list a.current-menu-item {
  background: rgba(253, 70, 33, 0.05);
  color: #fd4621;
}
.togo-landing-navbar-widget .togo-offcanvas-menu .offcanvas-body .mobile-nav-list a:not(.current-menu-item) {
  color: #475569;
}
.togo-landing-navbar-widget .togo-offcanvas-menu .offcanvas-body .mobile-nav-list a:not(.current-menu-item):hover {
  background: #F8FAFC;
  color: #fd4621;
}
.togo-landing-navbar-widget .togo-offcanvas-menu .offcanvas-body .mobile-nav-list a .chevron {
  font-size: 0.75rem;
}
.togo-landing-navbar-widget .togo-offcanvas-menu .offcanvas-footer {
  padding: 1.5rem;
  border-top: 1px solid #F1F5F9;
  background: rgba(248, 250, 252, 0.5);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.togo-landing-navbar-widget .togo-offcanvas-menu .offcanvas-footer .btn-login-mobile {
  display: block;
  width: 100%;
  padding: 1rem;
  background: #ffffff;
  border: 1px solid #E2E8F0;
  color: #0f172a;
  font-weight: 600;
  border-radius: 1rem;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.togo-landing-navbar-widget .togo-offcanvas-menu .offcanvas-footer .btn-login-mobile:hover {
  border-color: #fd4621;
}
.togo-landing-navbar-widget .togo-offcanvas-menu .offcanvas-footer .btn-get-started-mobile {
  display: block;
  width: 100%;
  padding: 1rem;
  background: #fd4621;
  color: #ffffff;
  font-weight: 600;
  border-radius: 1rem;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 10px 15px -3px rgba(253, 70, 33, 0.2);
  transition: background-color 0.3s ease;
}
.togo-landing-navbar-widget .togo-offcanvas-menu .offcanvas-footer .btn-get-started-mobile:hover {
  background: #e63d1b;
}
.togo-landing-navbar-widget .togo-offcanvas-menu .offcanvas-footer .social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding-top: 1rem;
  color: #94A3B8;
}
.togo-landing-navbar-widget .togo-offcanvas-menu .offcanvas-footer .social-links a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.togo-landing-navbar-widget .togo-offcanvas-menu .offcanvas-footer .social-links a:hover {
  color: #fd4621;
}

.togo-landing-trust {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  border-bottom: 1px solid #f1f5f9;
}
@media (max-width: 1024px) {
  .togo-landing-trust {
    padding-bottom: 40px;
  }
}
.togo-landing-trust .togo-trust-heading {
  text-align: center;
  font-size: 0.625rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .togo-landing-trust .togo-trust-heading {
    font-size: 0.75rem;
  }
}
.togo-landing-trust .togo-trust-row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.togo-landing-trust .togo-trust-slider {
  width: 100%;
  display: block;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .togo-landing-trust .togo-trust-slider {
    padding-bottom: 3rem;
  }
}
.togo-landing-trust .togo-trust-slider .swiper-pagination {
  bottom: 0;
}
.togo-landing-trust .togo-trust-slider .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #cbd5e1;
  opacity: 1;
  transition: all 0.3s ease;
}
.togo-landing-trust .togo-trust-slider .swiper-pagination .swiper-pagination-bullet-active {
  background: #fd4621;
  width: 20px;
  border-radius: 4px;
}
.togo-landing-trust .togo-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
  cursor: default;
}
.togo-landing-trust .togo-trust-item:hover .togo-trust-stars {
  transform: scale(1.1);
}
.togo-landing-trust .togo-trust-stars {
  display: flex;
  color: #facc15;
  font-size: 0.625rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}
.togo-landing-trust .togo-trust-stars i {
  margin-left: 0.125rem;
  margin-right: 0.125rem;
}
.togo-landing-trust .togo-trust-content {
  font-size: 1rem;
  color: #334155;
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.625;
  letter-spacing: -0.025em;
  font-style: italic;
  max-width: 280px;
}
@media (min-width: 768px) {
  .togo-landing-trust .togo-trust-content {
    font-size: 1.125rem;
  }
}
.togo-landing-trust .togo-trust-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}
.togo-landing-trust .togo-trust-author img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  border: 2px solid #ffffff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  object-fit: cover;
}
.togo-landing-trust .togo-trust-author .author-info {
  text-align: left;
}
.togo-landing-trust .togo-trust-author .author-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 0.125rem;
}
.togo-landing-trust .togo-trust-author .author-role {
  font-size: 0.5625rem;
  font-weight: 600;
  color: #fd4621;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.togo-landing-features {
  padding-top: 4rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .togo-landing-features {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
@media (min-width: 1024px) {
  .togo-landing-features {
    padding-top: 8rem;
  }
}
.togo-landing-features .togo-features-header {
  text-align: center;
  margin-bottom: 6rem;
  transition: all 0.5s ease;
}
.togo-landing-features .togo-features-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background-color: #f8fafc;
  border: 1px solid #f1f5f9;
  color: #64748b;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}
.togo-landing-features .togo-features-badge i {
  color: #fd4621;
}
.togo-landing-features h2 {
  font-size: 2.25rem;
  line-height: 1.2;
  font-weight: 600;
  color: #0f172a;
  letter-spacing: -0.025em;
}
@media (min-width: 768px) {
  .togo-landing-features h2 {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .togo-landing-features h2 {
    font-size: 3.75rem;
  }
}
.togo-landing-features h2 span {
  font-weight: 500;
}
.togo-landing-features .togo-features-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 768px) {
  .togo-landing-features .togo-features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .togo-landing-features .togo-features-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4rem;
  }
}
.togo-landing-features .togo-feature-item {
  display: flex;
  flex-direction: column;
  cursor: default;
  transition: all 0.5s ease;
}
.togo-landing-features .togo-feature-item:hover .togo-feature-mockup {
  background-color: #f1f5f9;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.06);
  transform: translateY(-0.5rem);
}
.togo-landing-features .togo-feature-item:hover .togo-feature-mockup .mockup-bg-pattern {
  opacity: 0.05;
}
.togo-landing-features .togo-feature-item:hover .togo-feature-mockup .mockup-content {
  transform: scale(1.1);
}
.togo-landing-features .togo-feature-item:hover h3 {
  color: #fd4621;
}
.togo-landing-features .togo-feature-item:hover .togo-feature-link {
  transform: translateX(0.25rem);
}
.togo-landing-features .togo-feature-item:hover .togo-feature-link i {
  transform: translateX(0.5rem);
}
.togo-landing-features .togo-feature-mockup {
  position: relative;
  height: 320px;
  width: 100%;
  border-radius: 3rem;
  margin-bottom: 2.5rem;
  border: 1px solid #f1f5f9;
  background-color: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  transition: all 0.5s ease;
  cursor: pointer;
  overflow: hidden;
}
.togo-landing-features .togo-feature-mockup .mockup-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  transition: opacity 0.3s;
  background-image: radial-gradient(#fd4621 1px, transparent 1px);
  background-size: 24px 24px;
  border-radius: 3rem;
}
.togo-landing-features .togo-feature-mockup .mockup-content {
  position: relative;
  z-index: 10;
  transition: transform 0.7s;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.togo-landing-features .togo-feature-mockup .mockup-content > div {
  max-height: 100%;
  width: auto;
}
.togo-landing-features .togo-feature-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 0.5rem;
}
.togo-landing-features .togo-feature-text h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
  transition: color 0.3s;
}
@media (min-width: 768px) {
  .togo-landing-features .togo-feature-text h3 {
    font-size: 1.5rem;
  }
}
.togo-landing-features .togo-feature-text p {
  font-size: 1rem;
  color: #64748b;
  font-weight: 500;
  line-height: 1.625;
  margin-bottom: 2rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.togo-landing-features .togo-feature-text .togo-feature-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #fd4621;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.3s;
}
.togo-landing-features .togo-feature-text .togo-feature-link i {
  transition: transform 0.3s;
}
.togo-landing-features .togo-features-action {
  margin-top: 6rem;
  text-align: center;
  transition: all 0.5s ease;
  transition-delay: 0.5s;
}
@media (min-width: 1024px) {
  .togo-landing-features .togo-features-action {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .togo-landing-features .togo-features-action {
    margin-top: 30px;
  }
}
.togo-landing-features .togo-features-action a {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 2rem;
  background: rgba(253, 70, 33, 0.1);
  color: #fd4621;
  font-weight: 500;
  border-radius: 0.75rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.togo-landing-features .togo-features-action a:hover {
  background: rgba(253, 70, 33, 0.2);
  transform: translateY(-0.25rem);
}
.togo-landing-features .togo-features-action a i {
  transition: transform 0.3s;
}
.togo-landing-features .togo-features-action a:hover i {
  transform: translateX(0.5rem);
}

.mockup-f1 {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem;
  width: 100%;
  max-width: 260px;
  background-color: #ffffff;
  border-radius: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid #f1f5f9;
  transform: rotate(-2deg);
  transition: transform 0.5s;
}
.togo-feature-item:hover .mockup-f1 {
  transform: rotate(0);
}
.mockup-f1 .f1-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.25rem;
}
.mockup-f1 .f1-header .lbl {
  font-size: 0.5625rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.mockup-f1 .f1-header .badge {
  padding: 0.125rem 0.5rem;
  background: #dcfce7;
  color: #15803d;
  font-size: 0.5rem;
  font-weight: 600;
  border-radius: 999px;
  text-transform: uppercase;
}
.mockup-f1 .f1-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.375rem;
}
.mockup-f1 .f1-grid .day {
  aspect-ratio: 1/1;
  border-radius: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.5625rem;
  font-weight: 600;
  background: #f8fafc;
  color: #94a3b8;
}
.mockup-f1 .f1-grid .day.active {
  background: #fd4621;
  color: #ffffff;
  box-shadow: 0 10px 15px -3px rgba(253, 70, 33, 0.2);
  transform: scale(1.1);
  z-index: 10;
}
.mockup-f1 .f1-grid .day.active .price {
  font-size: 0.375rem;
  opacity: 0.8;
  margin-top: 0.125rem;
}
.mockup-f1 .f1-footer {
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid #f8fafc;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mockup-f1 .f1-footer .price-box .lbl {
  font-size: 0.5rem;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
}
.mockup-f1 .f1-footer .price-box .val {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
}
.mockup-f1 .f1-footer .btn {
  padding: 0.5rem 1rem;
  background: #0f172a;
  color: #ffffff;
  font-size: 0.5625rem;
  font-weight: 600;
  border-radius: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.3s;
}

.mockup-f2 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 280px;
  position: relative;
}
.mockup-f2 .vendor-card {
  background: #ffffff;
  padding: 1rem;
  border-radius: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform 0.5s;
}
.mockup-f2 .vendor-card:nth-child(1) {
  transform: translateX(1rem);
}
.mockup-f2 .vendor-card:nth-child(2) {
  transform: translateX(-1rem);
}
.togo-feature-item:hover .mockup-f2 .vendor-card {
  transform: translateX(0);
}
.mockup-f2 .vendor-card .avatar-wrapper {
  position: relative;
}
.mockup-f2 .vendor-card .avatar-wrapper img {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.mockup-f2 .vendor-card .avatar-wrapper .rating {
  position: absolute;
  bottom: -0.25rem;
  right: -0.25rem;
  width: 1.25rem;
  height: 1.25rem;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  color: #facc15;
  font-size: 0.5rem;
}
.mockup-f2 .vendor-card .info {
  flex: 1;
}
.mockup-f2 .vendor-card .info .name {
  font-size: 0.75rem;
  font-weight: 600;
  color: #0f172a;
}
.mockup-f2 .vendor-card .info .progress-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.375rem;
}
.mockup-f2 .vendor-card .info .progress-bar {
  flex: 1;
  height: 0.375rem;
  background: #f1f5f9;
  border-radius: 999px;
  overflow: hidden;
}
.mockup-f2 .vendor-card .info .progress-bar .fill {
  height: 100%;
  background: #fd4621;
}
.mockup-f2 .vendor-card .info .score {
  font-size: 0.5625rem;
  font-weight: 600;
  color: #94a3b8;
}
.mockup-f2 .vendor-card .sales {
  text-align: right;
  font-size: 0.625rem;
  font-weight: 600;
  color: #22c55e;
}
.mockup-f2 .floating-badge {
  position: absolute;
  top: -1.5rem;
  right: -0.5rem;
  background: #ffffff;
  padding: 0.75rem;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid #f8fafc;
  transform: rotate(12deg);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.mockup-f2 .floating-badge i {
  color: #fd4621;
  font-size: 0.75rem;
}
.mockup-f2 .floating-badge span {
  font-size: 0.625rem;
  font-weight: 600;
}

.mockup-f3 {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 2.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid #f1f5f9;
  width: 100%;
  max-width: 280px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.togo-feature-item:hover .mockup-f3 {
  box-shadow: 0 25px 50px -12px rgba(253, 70, 33, 0.1);
}
.mockup-f3 .search-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #f8fafc;
  padding: 0.75rem;
  border-radius: 1rem;
  border: 1px solid #f1f5f9;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.togo-feature-item:hover .mockup-f3 .search-bar {
  background: #ffffff;
}
.mockup-f3 .search-bar i {
  color: #fd4621;
  font-size: 0.75rem;
}
.mockup-f3 .search-bar span {
  font-size: 0.625rem;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.mockup-f3 .filters .lbl {
  font-size: 0.5625rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.mockup-f3 .filters .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.mockup-f3 .filters .tags span {
  padding: 0.375rem 0.75rem;
  border-radius: 0.75rem;
  font-size: 0.5625rem;
  font-weight: 600;
}
.mockup-f3 .filters .tags .active {
  background: #fd4621;
  color: #ffffff;
  box-shadow: 0 10px 15px -3px rgba(253, 70, 33, 0.2);
}
.mockup-f3 .filters .tags .normal {
  background: #f8fafc;
  color: #64748b;
  border: 1px solid #f1f5f9;
}
.mockup-f3 .range {
  margin-top: 1.25rem;
  padding-top: 0.5rem;
}
.mockup-f3 .range .lbl {
  display: flex;
  justify-content: space-between;
  font-size: 0.5625rem;
  font-weight: 600;
  color: #94a3b8;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.mockup-f3 .range .track {
  height: 0.375rem;
  background: #f1f5f9;
  border-radius: 999px;
  position: relative;
}
.mockup-f3 .range .track .fill {
  position: absolute;
  left: 20%;
  right: 40%;
  height: 100%;
  background: #fd4621;
  border-radius: 999px;
}
.mockup-f3 .range .track .handle {
  position: absolute;
  top: -0.375rem;
  width: 1rem;
  height: 1rem;
  background: #ffffff;
  border: 3px solid #fd4621;
  border-radius: 50%;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s;
}
.mockup-f3 .range .track .handle:hover {
  transform: scale(1.1);
}
.mockup-f3 .range .track .handle-left {
  left: 20%;
}
.mockup-f3 .range .track .handle-right {
  right: 40%;
}

.mockup-f4 {
  display: flex;
  gap: 1rem;
  width: 100%;
  height: 180px;
  align-items: center;
  justify-content: center;
  position: relative;
}
.mockup-f4 .sidebar {
  width: 6rem;
  height: 100%;
  background: #0f172a;
  border-radius: 1.75rem;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.mockup-f4 .sidebar .widget {
  width: 100%;
  height: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.mockup-f4 .sidebar .widget:hover {
  background: rgba(255, 255, 255, 0.1);
}
.mockup-f4 .sidebar .widget .line {
  width: 2.5rem;
  height: 0.375rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}
.mockup-f4 .sidebar .widget.active .line {
  background: #fd4621;
}
.mockup-f4 .canvas {
  flex: 1;
  height: 85%;
  background: #ffffff;
  border-radius: 1.75rem;
  border: 2px dashed #e2e8f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  position: relative;
}
.mockup-f4 .canvas .icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(253, 70, 33, 0.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fd4621;
  font-size: 1.25rem;
  border: 1px solid rgba(253, 70, 33, 0.1);
  animation: togo-pulse 2s infinite;
}
.mockup-f4 .canvas .lbl {
  font-size: 0.625rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.mockup-f4 .canvas .cursor {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: all 0.7s;
}
.mockup-f4 .canvas .cursor i {
  color: #0f172a;
  font-size: 1.25rem;
  filter: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.2));
}
.togo-feature-item:hover .mockup-f4 .canvas .cursor {
  transform: translate(2.5rem, -2.5rem);
}

@keyframes togo-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.mockup-f5 {
  position: relative;
  width: 100%;
  max-width: 280px;
}
.mockup-f5 .card {
  background: linear-gradient(to bottom right, #1e293b, #0f172a);
  padding: 1.5rem;
  border-radius: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  transform: rotate(0);
  transition: transform 0.5s;
}
.togo-feature-item:hover .mockup-f5 .card {
  transform: rotate(1deg);
}
.mockup-f5 .card .glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  background: rgba(253, 70, 33, 0.1);
  border-radius: 50%;
  filter: blur(24px);
}
.mockup-f5 .card .header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}
.mockup-f5 .card .header i {
  color: rgba(255, 255, 255, 0.9);
  font-size: 2.25rem;
}
.mockup-f5 .card .header .chip {
  width: 2.5rem;
  height: 2rem;
  background: rgba(234, 179, 8, 0.2);
  border-radius: 0.5rem;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(234, 179, 8, 0.3);
}
.mockup-f5 .card .number {
  color: #ffffff;
  font-family: monospace;
  font-size: 1.125rem;
  letter-spacing: 0.2em;
  opacity: 0.9;
  margin-bottom: 1rem;
}
.mockup-f5 .card .footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.mockup-f5 .card .footer .lbl {
  font-size: 0.5rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}
.mockup-f5 .card .footer .val {
  font-size: 0.625rem;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
}
.mockup-f5 .card .footer .expiry .val {
  font-size: 0.625rem;
}
.mockup-f5 .toast {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: #ffffff;
  padding: 1rem;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transform: scale(0);
  transition: transform 0.5s 0.1s;
}
.togo-feature-item:hover .mockup-f5 .toast {
  transform: scale(1);
}
.mockup-f5 .toast .icon {
  width: 2.5rem;
  height: 2.5rem;
  background: #22c55e;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mockup-f5 .toast .text .title {
  font-size: 0.75rem;
  font-weight: 600;
  color: #0f172a;
}
.mockup-f5 .toast .text .subtitle {
  font-size: 0.625rem;
  color: #94a3b8;
  font-weight: 600;
}

.mockup-f6 {
  width: 7rem;
  height: 13rem;
  background: #0f172a;
  border-radius: 2rem;
  padding: 0.5rem;
  border: 4px solid #1e293b;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  transition: transform 0.5s;
}
.togo-feature-item:hover .mockup-f6 {
  transform: translateY(-0.5rem);
}
.mockup-f6 .screen {
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 1.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.mockup-f6 .screen .img-box {
  height: 6rem;
  background: #f1f5f9;
  position: relative;
}
.mockup-f6 .screen .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mockup-f6 .screen .img-box .fav {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.5rem;
}
.mockup-f6 .screen .content {
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mockup-f6 .screen .content .line {
  width: 100%;
  height: 0.5rem;
  background: #f1f5f9;
  border-radius: 0.25rem;
}
.mockup-f6 .screen .content .line-short {
  width: 70%;
  height: 0.5rem;
  background: #f1f5f9;
  border-radius: 0.25rem;
}
.mockup-f6 .screen .content .bottom {
  margin-top: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mockup-f6 .screen .content .bottom .price {
  font-size: 0.625rem;
  font-weight: 600;
  color: #fd4621;
}
.mockup-f6 .screen .content .bottom .btn {
  width: 2rem;
  height: 1rem;
  background: #0f172a;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mockup-f6 .screen .content .bottom .btn .bar {
  width: 1rem;
  height: 0.125rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 999px;
}
.mockup-f6 .notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2.5rem;
  height: 0.75rem;
  background: #0f172a;
  border-radius: 0 0 0.5rem 0.5rem;
}

.togo-animate-elem.opacity-0 {
  opacity: 0;
}
.togo-animate-elem.translate-y-10 {
  transform: translateY(2.5rem);
}
.togo-animate-elem.translate-y-20 {
  transform: translateY(5rem);
}
.togo-animate-elem.opacity-100 {
  opacity: 1;
}
.togo-animate-elem.translate-y-0 {
  transform: translateY(0);
}

.togo-landing-demos {
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.togo-landing-demos .togo-landing-container {
  padding-left: 0rem;
  padding-right: 0rem;
}
@media (max-width: 1024px) {
  .togo-landing-demos {
    padding-bottom: 2rem;
  }
}
.togo-landing-demos .togo-demos-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 5rem;
}
.togo-landing-demos .togo-demos-header h2 {
  font-size: 2.25rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .togo-landing-demos .togo-demos-header h2 {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .togo-landing-demos .togo-demos-header h2 {
    font-size: 3.75rem;
  }
}
.togo-landing-demos .togo-demos-header h2 span {
  font-weight: 500;
  color: #fd4621;
  font-style: italic;
}
.togo-landing-demos .togo-demos-header p {
  font-size: 1.125rem;
  color: #475569;
  line-height: 1.625;
}
@media (min-width: 768px) {
  .togo-landing-demos .togo-demos-header p {
    font-size: 1.25rem;
  }
}
.togo-landing-demos .togo-demos-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 640px) {
  .togo-landing-demos .togo-demos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .togo-landing-demos .togo-demos-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3rem;
  }
}
.togo-landing-demos .togo-demo-card {
  position: relative;
  cursor: default;
}
.togo-landing-demos .togo-demo-card:hover .demo-image-wrap img {
  transform: scale(1.05);
}
.togo-landing-demos .togo-demo-card:hover .demo-image-wrap .demo-overlay {
  opacity: 1;
}
.togo-landing-demos .togo-demo-card:hover .demo-image-wrap .demo-btn {
  transform: translateY(0);
}
.togo-landing-demos .togo-demo-card:hover h3 {
  color: #fd4621;
}
.togo-landing-demos .demo-image-wrap {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 2.25rem;
  overflow: hidden;
  border: 1px solid #f1f5f9;
  background-color: #f8fafc;
  box-shadow: 0 20px 25px -5px rgba(241, 245, 249, 0.5);
}
.togo-landing-demos .demo-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 2s ease;
}
.togo-landing-demos .demo-image-wrap .demo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.8), transparent, transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}
.togo-landing-demos .demo-image-wrap .demo-btn {
  display: block;
  text-align: center;
  background: #fd4621;
  color: #ffffff;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: 1rem;
  transform: translateY(1.5rem);
  transition: all 0.5s ease;
  text-decoration: none;
}
.togo-landing-demos .demo-image-wrap .demo-btn:hover {
  background: #ffffff;
  color: #fd4621;
}
.togo-landing-demos .demo-image-wrap .demo-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: #fd4621;
  color: #ffffff;
  font-size: 0.625rem;
  font-weight: 600;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgba(253, 70, 33, 0.2);
  z-index: 10;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.togo-landing-demos .demo-content {
  margin-top: 2rem;
  padding: 0 0.5rem;
}
.togo-landing-demos .demo-content .demo-cat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.togo-landing-demos .demo-content .demo-cat .line {
  width: 1.5rem;
  height: 1px;
  background: rgba(253, 70, 33, 0.3);
}
.togo-landing-demos .demo-content .demo-cat span {
  font-size: 0.625rem;
  font-weight: 500;
  color: #fd4621;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.togo-landing-demos .demo-content h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 0.5rem;
  letter-spacing: -0.025em;
  transition: color 0.3s;
}
.togo-landing-demos .demo-content h3 a {
  color: inherit;
  text-decoration: none;
}
.togo-landing-demos .demo-content p {
  font-size: 1rem;
  color: #64748b;
  font-weight: 400;
  line-height: 1.625;
}
.togo-landing-demos .togo-demos-action {
  margin-top: 5rem;
  text-align: center;
}
@media (max-width: 767px) {
  .togo-landing-demos .togo-demos-action {
    margin-top: 40px;
  }
}
.togo-landing-demos .togo-demos-action a {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 2rem;
  background: rgba(253, 70, 33, 0.1);
  color: #fd4621;
  font-weight: 600;
  border-radius: 0.75rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.togo-landing-demos .togo-demos-action a:hover {
  background: rgba(253, 70, 33, 0.2);
  transform: translateY(-0.25rem);
}
.togo-landing-demos .togo-demos-action a i {
  transition: transform 0.3s;
}
.togo-landing-demos .togo-demos-action a:hover i {
  transform: translateX(0.5rem);
}

.togo-landing-value {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f8fafc;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}
.togo-landing-value .togo-value-header {
  text-align: center;
  margin-bottom: 4rem;
}
.togo-landing-value .togo-value-header h2 {
  font-size: 1.875rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}
@media (min-width: 768px) {
  .togo-landing-value .togo-value-header h2 {
    font-size: 2.25rem;
  }
}
.togo-landing-value .togo-value-header h2 span {
  color: #fd4621;
  font-style: italic;
}
.togo-landing-value .togo-value-header p {
  font-size: 1.125rem;
  color: #475569;
  max-width: 48rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .togo-landing-value .togo-value-header p {
    font-size: 1.25rem;
  }
}
.togo-landing-value .togo-value-table {
  max-width: 64rem;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 3rem;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  overflow: hidden;
}
.togo-landing-value .togo-value-table .togo-table-head {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  background-color: #0f172a;
  color: #ffffff;
  padding: 1.5rem 2.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
}
.togo-landing-value .togo-value-table .togo-table-head .col-feature {
  grid-column: span 7/span 7;
}
.togo-landing-value .togo-value-table .togo-table-head .col-market {
  grid-column: span 3/span 3;
  text-align: center;
}
.togo-landing-value .togo-value-table .togo-table-head .col-togo {
  grid-column: span 2/span 2;
  text-align: right;
  color: #fd4621;
}
@media (max-width: 640px) {
  .togo-landing-value .togo-value-table .togo-table-head {
    grid-template-columns: 1fr;
  }
  .togo-landing-value .togo-value-table .togo-table-head .col-market, .togo-landing-value .togo-value-table .togo-table-head .col-togo {
    display: none;
  }
}
.togo-landing-value .togo-value-table .togo-table-body {
  padding: 1rem 2.5rem;
}
@media (max-width: 640px) {
  .togo-landing-value .togo-value-table .togo-table-body {
    padding: 1rem;
  }
}
.togo-landing-value .togo-value-table .togo-table-row {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  padding: 1.25rem 1.5rem;
  align-items: center;
  border-radius: 1rem;
  transition: background-color 0.3s;
  border-bottom: 1px solid #f1f5f9;
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}
.togo-landing-value .togo-value-table .togo-table-row:last-child {
  border-bottom: none;
}
.togo-landing-value .togo-value-table .togo-table-row:hover {
  background-color: rgba(248, 250, 252, 0.5);
}
@media (max-width: 640px) {
  .togo-landing-value .togo-value-table .togo-table-row {
    grid-template-columns: 1fr auto;
    grid-template-areas: "feature market" "togo    togo";
    gap: 0.375rem;
  }
}
.togo-landing-value .togo-value-table .togo-table-row .col-feature {
  grid-column: span 7/span 7;
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 640px) {
  .togo-landing-value .togo-value-table .togo-table-row .col-feature {
    grid-area: feature;
  }
}
.togo-landing-value .togo-value-table .togo-table-row .col-feature .icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.75rem;
  background-color: #f0fdf4;
  color: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}
.togo-landing-value .togo-value-table .togo-table-row .col-feature .name {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: -0.025em;
}
.togo-landing-value .togo-value-table .togo-table-row .col-market {
  grid-column: span 3/span 3;
  text-align: center;
  color: #94a3b8;
  font-size: 1.125rem;
  font-weight: 500;
}
@media (max-width: 640px) {
  .togo-landing-value .togo-value-table .togo-table-row .col-market {
    grid-area: market;
    text-align: right;
    font-size: 0.9rem;
    align-self: center;
    padding-left: 0;
  }
}
.togo-landing-value .togo-value-table .togo-table-row .col-togo {
  grid-column: span 2/span 2;
  text-align: right;
}
@media (max-width: 640px) {
  .togo-landing-value .togo-value-table .togo-table-row .col-togo {
    grid-area: togo;
    text-align: left;
    padding-left: 3rem;
  }
}
.togo-landing-value .togo-value-table .togo-table-row .col-togo .badge {
  background-color: rgba(253, 70, 33, 0.1);
  color: #fd4621;
  padding: 0.375rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.togo-landing-value .togo-value-table .togo-table-footer {
  padding: 4rem 2.5rem 5rem;
  border-top: 2px dashed #f1f5f9;
  background-color: rgba(248, 250, 252, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1024px) {
  .togo-landing-value .togo-value-table .togo-table-footer {
    padding: 4rem 1rem 2rem;
  }
}
.togo-landing-value .togo-value-table .togo-table-footer .footer-label {
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.625rem;
  margin-bottom: 2rem;
}
.togo-landing-value .togo-value-table .togo-table-footer .price-compare {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .togo-landing-value .togo-value-table .togo-table-footer .price-compare {
    flex-direction: row;
    gap: 3rem;
  }
}
.togo-landing-value .togo-value-table .togo-table-footer .price-compare .market {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.togo-landing-value .togo-value-table .togo-table-footer .price-compare .market .val {
  font-size: 1.875rem;
  color: #cbd5e1;
  text-decoration: line-through;
  letter-spacing: -0.025em;
}
.togo-landing-value .togo-value-table .togo-table-footer .price-compare .market .lbl {
  font-size: 0.5625rem;
  color: #94a3b8;
  text-transform: uppercase;
  margin-top: 0.25rem;
  letter-spacing: 0.1em;
}
.togo-landing-value .togo-value-table .togo-table-footer .price-compare .divider {
  width: 1px;
  height: 4rem;
  background-color: #e2e8f0;
  display: none;
}
@media (min-width: 768px) {
  .togo-landing-value .togo-value-table .togo-table-footer .price-compare .divider {
    display: block;
  }
}
.togo-landing-value .togo-value-table .togo-table-footer .price-compare .togo {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.togo-landing-value .togo-value-table .togo-table-footer .price-compare .togo .val {
  font-size: 4.5rem;
  color: #fd4621;
  letter-spacing: -0.05em;
  line-height: 1;
}
@media (min-width: 768px) {
  .togo-landing-value .togo-value-table .togo-table-footer .price-compare .togo .val {
    font-size: 6rem;
  }
}
.togo-landing-value .togo-value-table .togo-table-footer .price-compare .togo .lbl {
  font-size: 0.75rem;
  color: #fd4621;
  text-transform: uppercase;
  margin-top: 0.5rem;
  letter-spacing: 0.1em;
}
.togo-landing-value .togo-value-table .togo-table-footer .savings-badge {
  background-color: #dcfce7;
  color: #15803d;
  padding: 1rem 2.5rem;
  border-radius: 1rem;
  font-size: 1.125rem;
  margin-bottom: 3rem;
  box-shadow: 0 20px 25px -5px rgba(187, 247, 208, 0.4);
  border: 2px solid #bbf7d0;
  animation: togo-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  font-weight: 500;
  text-align: center;
}
.togo-landing-value .togo-value-table .togo-table-footer .togo-btn-primary {
  width: 100%;
  max-width: 36rem;
  padding: 1.5rem;
  border-radius: 1.5rem;
  font-size: 1rem;
  box-shadow: 0 15px 40px -10px rgba(253, 70, 33, 0.2);
}
.togo-landing-value .togo-value-table .togo-table-footer .togo-btn-primary:hover {
  transform: translateY(-0.25rem) scale(1.01);
}
.togo-landing-value .togo-value-table .togo-table-footer .guarantees {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  align-items: self-start;
}
.togo-landing-value .togo-value-table .togo-table-footer .guarantees p {
  color: #0f172a;
  font-size: 0.6875rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-block-end: 0px;
}
.togo-landing-value .togo-value-table .togo-table-footer .guarantees p i {
  font-size: 1rem;
}
.togo-landing-value .togo-value-table .togo-table-footer .guarantees p .icon-shield {
  color: #22c55e;
}
.togo-landing-value .togo-value-table .togo-table-footer .guarantees p .icon-infinity {
  color: #fd4621;
}
.togo-landing-value .togo-value-table .togo-table-footer .guarantees p .icon-headset {
  color: #3b82f6;
}

.togo-landing-faq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.togo-landing-faq .togo-faq-header {
  text-align: center;
  margin-bottom: 5rem;
}
.togo-landing-faq .togo-faq-header h2 {
  font-size: 1.875rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}
@media (min-width: 768px) {
  .togo-landing-faq .togo-faq-header h2 {
    font-size: 2.25rem;
  }
}
.togo-landing-faq .togo-faq-header h2 span {
  color: #fd4621;
  font-style: italic;
}
.togo-landing-faq .togo-faq-header p {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 42rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .togo-landing-faq .togo-faq-header p {
    font-size: 1.25rem;
  }
}
.togo-landing-faq .togo-faq-container {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.togo-landing-faq .togo-faq-item {
  border: 2px solid #f1f5f9;
  border-radius: 2rem;
  overflow: hidden;
  background-color: #ffffff;
  transition: all 0.5s ease;
}
.togo-landing-faq .togo-faq-item:hover {
  border-color: rgba(253, 70, 33, 0.1);
}
.togo-landing-faq .togo-faq-item.active {
  background-color: #f8fafc;
  border-color: rgba(253, 70, 33, 0.2);
  box-shadow: 0 10px 15px -3px rgb(241, 245, 249);
}
.togo-landing-faq .togo-faq-item.active .faq-icon {
  transform: rotate(180deg);
  background-color: #fd4621;
  border-color: #fd4621;
  color: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.togo-landing-faq .togo-faq-item.active .faq-content {
  max-height: 600px;
  opacity: 1;
}
.togo-landing-faq .faq-toggle {
  width: 100%;
  text-align: left;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
}
.togo-landing-faq .faq-toggle span {
  font-weight: 500;
  color: #0f172a;
  font-size: 1.25rem;
  letter-spacing: -0.025em;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .togo-landing-faq .faq-toggle span {
    font-size: 1.2rem;
  }
}
.togo-landing-faq .faq-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1.125rem;
  border: 2px solid #f1f5f9;
  background-color: #ffffff;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 1rem;
  transition: all 0.5s ease;
}
.togo-landing-faq .faq-icon i {
  font-size: 0.625rem;
}
.togo-landing-faq .faq-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.5s ease;
}
.togo-landing-faq .faq-content .inner {
  padding: 0 2rem 2rem;
  color: #475569;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.625;
  max-width: 48rem;
}
.togo-landing-faq .togo-faq-footer {
  margin-top: 4rem;
  text-align: center;
}
.togo-landing-faq .togo-faq-footer p {
  color: #94a3b8;
  font-size: 1rem;
}
.togo-landing-faq .togo-faq-footer a {
  color: #fd4621;
  margin-left: 0.25rem;
  transition: color 0.3s;
}
.togo-landing-faq .togo-faq-footer a:hover {
  text-decoration: underline;
}

.togo-landing-cta {
  position: relative;
  width: 100%;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #0f172a;
  overflow: hidden;
}
@media (max-width: 768px) {
  .togo-landing-cta {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.togo-landing-cta .cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}
.togo-landing-cta .cta-background .glow-1 {
  position: absolute;
  top: -6rem;
  left: -6rem;
  width: 24rem;
  height: 24rem;
  background-color: rgba(253, 70, 33, 0.2);
  border-radius: 50%;
  filter: blur(120px);
  animation: togo-pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.togo-landing-cta .cta-background .glow-2 {
  position: absolute;
  top: 50%;
  right: -12rem;
  width: 31.25rem;
  height: 31.25rem;
  background-color: rgba(253, 70, 33, 0.1);
  border-radius: 50%;
  filter: blur(150px);
}
.togo-landing-cta .cta-background .glow-3 {
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 16rem;
  height: 16rem;
  background-color: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  filter: blur(100px);
}
.togo-landing-cta .cta-background .grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(#ffffff 1px, transparent 1px);
  background-size: 40px 40px;
}
.togo-landing-cta .cta-card {
  background-color: #fd4621;
  border-radius: 4rem;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(253, 70, 33, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 768px) {
  .togo-landing-cta .cta-card {
    padding: 6rem;
  }
}
@media (max-width: 768px) {
  .togo-landing-cta .cta-card {
    padding: 2rem 1rem;
  }
}
.togo-landing-cta .cta-card .card-glow-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 25rem;
  height: 25rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  filter: blur(100px);
  transform: translate(50%, -50%);
  transition: transform 0.7s ease;
}
.togo-landing-cta:hover .togo-landing-cta .cta-card .card-glow-1 {
  transform: scale(1.1) translate(50%, -50%);
}
.togo-landing-cta .cta-card .card-glow-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 18.75rem;
  height: 18.75rem;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  filter: blur(80px);
  transform: translate(-50%, 50%);
}
.togo-landing-cta .cta-card .float-element-1 {
  display: none;
}
@media (min-width: 1024px) {
  .togo-landing-cta .cta-card .float-element-1 {
    display: block;
    position: absolute;
    top: 3rem;
    left: 3rem;
    width: 6rem;
    height: 6rem;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.4;
    animation: togo-float 6s ease-in-out infinite;
  }
}
.togo-landing-cta .cta-card .float-element-2 {
  display: none;
}
@media (min-width: 1024px) {
  .togo-landing-cta .cta-card .float-element-2 {
    display: block;
    position: absolute;
    bottom: 6rem;
    right: 4rem;
    width: 4rem;
    height: 4rem;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.3;
    animation: togo-float-delayed 8s ease-in-out infinite;
  }
}
.togo-landing-cta .cta-content {
  position: relative;
  z-index: 10;
  max-width: 48rem;
  margin: 0 auto;
}
.togo-landing-cta .cta-content .cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
}
.togo-landing-cta .cta-content .cta-badge i {
  animation: togo-bounce 1s infinite;
}
.togo-landing-cta .cta-content h2 {
  font-size: 2.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 2rem;
  letter-spacing: -0.05em;
  line-height: 1.05;
}
@media (min-width: 768px) {
  .togo-landing-cta .cta-content h2 {
    font-size: 3.75rem;
  }
}
@media (min-width: 1024px) {
  .togo-landing-cta .cta-content h2 {
    font-size: 4.5rem;
  }
}
.togo-landing-cta .cta-content h2 span {
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}
.togo-landing-cta .cta-content p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  font-weight: 500;
  line-height: 1.625;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .togo-landing-cta .cta-content p {
    font-size: 1.25rem;
  }
}
.togo-landing-cta .cta-content .cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .togo-landing-cta .cta-content .cta-actions {
    flex-direction: row;
  }
}
.togo-landing-cta .cta-content .cta-actions .btn-primary {
  width: 100%;
  padding: 1.5rem 3rem;
  background-color: #ffffff;
  color: #fd4621;
  font-weight: 500;
  border-radius: 1.5rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
@media (max-width: 1024px) {
  .togo-landing-cta .cta-content .cta-actions .btn-primary {
    padding: 1.5rem 1.5rem;
  }
}
@media (min-width: 640px) {
  .togo-landing-cta .cta-content .cta-actions .btn-primary {
    width: auto;
  }
}
.togo-landing-cta .cta-content .cta-actions .btn-primary:hover {
  background-color: #f8fafc;
  transform: scale(1.05);
}
.togo-landing-cta .cta-content .cta-actions .btn-primary:hover i {
  transform: translateX(0.25rem);
}
.togo-landing-cta .cta-content .cta-actions .btn-primary:active {
  transform: scale(0.95);
}
.togo-landing-cta .cta-content .cta-actions .btn-secondary {
  width: 100%;
  padding: 1.5rem 3rem;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  color: #ffffff;
  font-weight: 600;
  border-radius: 1.5rem;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
@media (max-width: 1024px) {
  .togo-landing-cta .cta-content .cta-actions .btn-secondary {
    padding: 1.5rem 1.5rem;
  }
}
@media (min-width: 640px) {
  .togo-landing-cta .cta-content .cta-actions .btn-secondary {
    width: auto;
  }
}
.togo-landing-cta .cta-content .cta-actions .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}
.togo-landing-cta .cta-content .cta-actions .btn-secondary:active {
  transform: scale(0.95);
}
.togo-landing-cta .cta-content .cta-trust-badges {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  opacity: 0.6;
}
@media (min-width: 768px) {
  .togo-landing-cta .cta-content .cta-trust-badges {
    gap: 3rem;
  }
}
@media (max-width: 768px) {
  .togo-landing-cta .cta-content .cta-trust-badges {
    padding-top: 1rem;
  }
}
.togo-landing-cta .cta-content .cta-trust-badges .badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.togo-landing-cta .cta-content .cta-trust-badges .badge-item i {
  font-size: 1rem;
}

@keyframes togo-float {
  0%, 100% {
    transform: translateY(0px) rotate(12deg);
  }
  50% {
    transform: translateY(-20px) rotate(15deg);
  }
}
@keyframes togo-float-delayed {
  0%, 100% {
    transform: translateY(0px) rotate(-12deg);
  }
  50% {
    transform: translateY(20px) rotate(-15deg);
  }
}
@keyframes togo-bounce {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}
.togo-landing-support {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.togo-landing-support .togo-support-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .togo-landing-support .togo-support-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .togo-landing-support .togo-support-grid {
    gap: 5px;
  }
}
.togo-landing-support .togo-support-link {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: 2rem;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  text-decoration: none;
}
.togo-landing-support .togo-support-link:hover {
  border-color: #f1f5f9;
  background-color: #f8fafc;
}
.togo-landing-support .togo-support-link:hover .icon-box {
  transform: scale(1.1);
}
.togo-landing-support .togo-support-link:hover .title {
  color: #fd4621;
}
.togo-landing-support .togo-support-link:hover .arrow {
  opacity: 1;
  transform: translateX(0.25rem);
}
.togo-landing-support .togo-support-link .icon-box {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}
.togo-landing-support .togo-support-link .content {
  flex: 1;
}
.togo-landing-support .togo-support-link .content .title-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}
.togo-landing-support .togo-support-link .content .title-row .title {
  font-size: 1.25rem;
  font-weight: 500;
  color: #0f172a;
  letter-spacing: -0.025em;
  transition: color 0.3s ease;
}
.togo-landing-support .togo-support-link .content .title-row .arrow {
  font-size: 0.75rem;
  color: #fd4621;
  opacity: 0;
  transition: all 0.3s ease;
}
.togo-landing-support .togo-support-link .content .desc {
  color: #64748b;
  font-weight: 500;
  font-size: 0.875rem;
  margin: 0;
}

.togo-landing-footer-block {
  background-color: #0f172a;
  color: #ffffff;
  padding-top: 8rem;
  padding-bottom: 1rem;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
@media (max-width: 768px) {
  .togo-landing-footer-block {
    padding-top: 3rem;
  }
}
.togo-landing-footer-block .togo-landing-container {
  margin: 0 auto;
}
.togo-landing-footer-block .togo-footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5rem;
  margin-bottom: 6rem;
}
@media (min-width: 768px) {
  .togo-landing-footer-block .togo-footer-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .togo-landing-footer-block .togo-footer-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .togo-landing-footer-block .togo-footer-grid {
    margin-bottom: 3rem;
  }
}
.togo-landing-footer-block .togo-col-brand {
  grid-column: span 2/span 2;
}
.togo-landing-footer-block .togo-col-brand .brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.togo-landing-footer-block .togo-col-brand .brand-logo img {
  max-width: 100%;
  height: auto;
  display: block;
}
.togo-landing-footer-block .togo-col-brand .brand-logo .icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background-color: #fd4621;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(253, 70, 33, 0.2);
}
.togo-landing-footer-block .togo-col-brand .brand-logo .icon i, .togo-landing-footer-block .togo-col-brand .brand-logo .icon svg {
  color: #ffffff;
  font-size: 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
  fill: currentColor;
}
.togo-landing-footer-block .togo-col-brand .brand-logo .name {
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: -0.05em;
}
.togo-landing-footer-block .togo-col-brand .brand-logo .name span {
  color: #fd4621;
}
.togo-landing-footer-block .togo-col-brand .brand-desc {
  color: #94a3b8;
  font-size: 1.25rem;
  max-width: 28rem;
  margin-bottom: 3rem;
  font-weight: 400;
  line-height: 1.625;
}
.togo-landing-footer-block .togo-col-brand .social-links {
  display: flex;
  gap: 1.5rem;
}
.togo-landing-footer-block .togo-col-brand .social-links .social-item {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}
.togo-landing-footer-block .togo-col-brand .social-links .social-item i, .togo-landing-footer-block .togo-col-brand .social-links .social-item svg {
  font-size: 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  fill: #e5e7eb;
}
.togo-landing-footer-block .togo-col-brand .social-links .social-item:hover {
  background-color: #fd4621;
  border-color: #fd4621;
  transform: translateY(-0.25rem);
}
.togo-landing-footer-block .togo-col-menu .footer-menu-title {
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748b;
}
.togo-landing-footer-block .togo-col-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.togo-landing-footer-block .togo-col-menu ul li a {
  color: #94a3b8;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.3s;
}
.togo-landing-footer-block .togo-col-menu ul li a:hover {
  color: #fd4621;
}
.togo-landing-footer-block .togo-col-menu .status-indicator {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #22c55e;
  font-weight: 500;
  font-size: 1rem;
}
.togo-landing-footer-block .togo-col-menu .status-indicator .dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: #22c55e;
  animation: togo-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.togo-landing-footer-block .togo-footer-bottom {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  font-size: 1rem;
  color: #64748b;
  font-weight: 400;
}
@media (min-width: 768px) {
  .togo-landing-footer-block .togo-footer-bottom {
    flex-direction: row;
  }
}
.togo-landing-footer-block .togo-footer-bottom .right-links {
  display: flex;
  gap: 3rem;
  font-weight: 500;
  align-items: flex-start;
}
.togo-landing-footer-block .togo-footer-bottom .right-links .lang-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
  cursor: pointer;
}
.togo-landing-footer-block .togo-footer-bottom .right-links .lang-selector:hover {
  color: #ffffff;
}
.togo-landing-footer-block .togo-footer-bottom .right-links .lang-selector i, .togo-landing-footer-block .togo-footer-bottom .right-links .lang-selector svg {
  font-size: 1rem;
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.togo-demos-page-widget {
  background-color: #ffffff;
}
.togo-demos-page-widget .demos-header {
  background-color: rgba(253, 70, 33, 0.05);
  padding-top: 10rem;
  padding-bottom: 5rem;
  text-align: center;
}
.togo-demos-page-widget .demos-header .header-title {
  font-size: 2.25rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
@media (min-width: 768px) {
  .togo-demos-page-widget .demos-header .header-title {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .togo-demos-page-widget .demos-header .header-title {
    font-size: 3.75rem;
  }
}
.togo-demos-page-widget .demos-header .header-title span {
  color: #fd4621;
}
.togo-demos-page-widget .demos-header .header-desc {
  max-width: 42rem;
  margin: 0 auto;
  font-size: 1.25rem;
  color: #475569;
  line-height: 1.625;
  font-weight: 500;
}
.togo-demos-page-widget .demos-filter-bar {
  position: sticky;
  top: 4.7rem;
}
@media (max-width: 768px) {
  .togo-demos-page-widget .demos-filter-bar {
    top: 3.7rem;
  }
}
.togo-demos-page-widget .demos-filter-bar {
  z-index: 30;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #f1f5f9;
  padding: 1.5rem 0;
}
.togo-demos-page-widget .demos-filter-bar .filter-wrap {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.togo-demos-page-widget .demos-filter-bar .filter-wrap::-webkit-scrollbar {
  display: none;
}
@media (max-width: 768px) {
  .togo-demos-page-widget .demos-filter-bar .filter-wrap {
    justify-content: flex-start;
    padding: 0 1.25rem;
    margin: 0 -1.25rem;
  }
}
.togo-demos-page-widget .demos-filter-bar .filter-btn {
  flex-shrink: 0;
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s;
  border: 1px solid #e2e8f0;
  background-color: #ffffff;
  color: #475569;
  cursor: pointer;
}
.togo-demos-page-widget .demos-filter-bar .filter-btn:hover {
  border-color: rgba(253, 70, 33, 0.4);
  color: #fd4621;
}
.togo-demos-page-widget .demos-filter-bar .filter-btn.active {
  background-color: #fd4621;
  color: #ffffff;
  border-color: #fd4621;
}
.togo-demos-page-widget .demos-grid-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.togo-demos-page-widget .demos-grid-section .togo-landing-container.row {
  margin-left: auto;
  margin-right: auto;
}
.togo-demos-page-widget .demos-grid-section .demos-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .togo-demos-page-widget .demos-grid-section .demos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .togo-demos-page-widget .demos-grid-section .demos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.togo-demos-page-widget .demos-grid-section .demo-card-item {
  transition: all 0.3s ease;
  opacity: 1;
  transform: scale(1);
}
.togo-demos-page-widget .demos-grid-section .card-inner .img-wrap {
  position: relative;
  aspect-ratio: 2/3;
  border-radius: 2rem;
  overflow: hidden;
  border: 1px solid #f1f5f9;
  background-color: #f1f5f9;
}
.togo-demos-page-widget .demos-grid-section .card-inner .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 2s ease;
}
.togo-demos-page-widget .demos-grid-section .card-inner .img-wrap .placeholder-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
}
.togo-demos-page-widget .demos-grid-section .card-inner .img-wrap .hover-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.6);
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.togo-demos-page-widget .demos-grid-section .card-inner .img-wrap .hover-overlay a {
  display: block;
  width: 100%;
  text-align: center;
  font-weight: 600;
  padding: 1rem 4rem;
  border-radius: 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}
.togo-demos-page-widget .demos-grid-section .card-inner .img-wrap .hover-overlay .overlay-btn-preview {
  background-color: #ffffff;
  color: #0f172a;
  transform: translateY(1rem);
}
.togo-demos-page-widget .demos-grid-section .card-inner .img-wrap .hover-overlay .overlay-btn-import {
  background-color: #fd4621;
  color: #ffffff;
  transform: translateY(2rem);
  transition-delay: 75ms;
}
.togo-demos-page-widget .demos-grid-section .card-inner .img-wrap .badge-new {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background-color: #fd4621;
  color: #ffffff;
  font-size: 0.625rem;
  font-weight: 600;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  z-index: 10;
}
.togo-demos-page-widget .demos-grid-section .card-inner .img-wrap .badge-cat {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  color: #0f172a;
  font-size: 0.625rem;
  font-weight: 600;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  z-index: 10;
  text-transform: uppercase;
}
.togo-demos-page-widget .demos-grid-section .card-inner:hover .img-wrap img {
  transform: scale(1.05);
}
.togo-demos-page-widget .demos-grid-section .card-inner:hover .img-wrap .hover-overlay {
  opacity: 1;
}
.togo-demos-page-widget .demos-grid-section .card-inner:hover .img-wrap .hover-overlay .overlay-btn-preview,
.togo-demos-page-widget .demos-grid-section .card-inner:hover .img-wrap .hover-overlay .overlay-btn-import {
  transform: translateY(0);
}
.togo-demos-page-widget .demos-grid-section .card-inner .card-content {
  margin-top: 2rem;
  padding: 0 0.5rem;
  text-align: center;
}
.togo-demos-page-widget .demos-grid-section .card-inner .card-content .card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}
.togo-demos-page-widget .demos-grid-section .card-inner .card-content .card-title a {
  color: inherit;
  text-decoration: none;
}
.togo-demos-page-widget .demos-grid-section .card-inner .card-content .card-title a:hover {
  color: #fd4621;
}
.togo-demos-page-widget .demos-grid-section .card-inner .card-content .card-desc {
  color: #64748b;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.625;
}
.togo-demos-page-widget .demos-cta-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f8fafc;
}
.togo-demos-page-widget .demos-cta-section .cta-inner {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}
.togo-demos-page-widget .demos-cta-section .cta-inner .cta-title {
  font-size: 1.875rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 2rem;
  letter-spacing: -0.025em;
}
@media (min-width: 768px) {
  .togo-demos-page-widget .demos-cta-section .cta-inner .cta-title {
    font-size: 2.25rem;
  }
}
.togo-demos-page-widget .demos-cta-section .cta-inner .cta-desc {
  font-size: 1.125rem;
  color: #475569;
  margin-bottom: 2.5rem;
  font-weight: 500;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}
.togo-demos-page-widget .demos-cta-section .cta-inner .cta-buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
@media (min-width: 640px) {
  .togo-demos-page-widget .demos-cta-section .cta-inner .cta-buttons {
    flex-direction: row;
  }
}
.togo-demos-page-widget .demos-cta-section .cta-inner .cta-buttons a {
  padding: 1.25rem 2.5rem;
  border-radius: 1rem;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s;
  display: inline-block;
}
.togo-demos-page-widget .demos-cta-section .cta-inner .cta-buttons .cta-btn-primary {
  background-color: #fd4621;
  color: #ffffff;
}
.togo-demos-page-widget .demos-cta-section .cta-inner .cta-buttons .cta-btn-primary:hover {
  filter: brightness(1.1);
}
.togo-demos-page-widget .demos-cta-section .cta-inner .cta-buttons .cta-btn-secondary {
  background-color: #ffffff;
  color: #0f172a;
  border: 1px solid #e2e8f0;
}
.togo-demos-page-widget .demos-cta-section .cta-inner .cta-buttons .cta-btn-secondary:hover {
  border-color: #fd4621;
  color: #fd4621;
}

.togo-features-widget {
  position: relative;
  overflow: hidden;
}
.togo-features-widget.features-hero {
  padding: 10rem 0 6rem;
}
@media (min-width: 1024px) {
  .togo-features-widget.features-hero {
    padding: 14rem 0 8rem;
  }
  .togo-features-widget.features-hero .hero-text-col,
  .togo-features-widget.features-hero .hero-image-col {
    width: 50%;
  }
}
.togo-features-widget.features-hero .badge-advanced {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background-color: rgba(253, 70, 33, 0.05);
  color: #fd4621;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}
.togo-features-widget.features-hero h1 {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.05;
  color: #0f172a;
  margin-bottom: 2rem;
  letter-spacing: -0.025em;
}
@media (min-width: 768px) {
  .togo-features-widget.features-hero h1 {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .togo-features-widget.features-hero h1 {
    font-size: 4.5rem;
  }
}
.togo-features-widget.features-hero h1 span {
  color: #fd4621;
}
.togo-features-widget.features-hero .hero-desc {
  font-size: 1.25rem;
  color: #475569;
  margin-bottom: 2.5rem;
  line-height: 1.625;
  max-width: 36rem;
  font-weight: 500;
}
.togo-features-widget.features-hero .hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .togo-features-widget.features-hero .hero-buttons {
    flex-direction: row;
  }
}
.togo-features-widget.features-hero .hero-buttons .btn-view {
  padding: 1.25rem 2rem;
  background-color: #fd4621;
  color: #ffffff;
  font-weight: 500;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(253, 70, 33, 0.2);
  text-align: center;
}
.togo-features-widget.features-hero .hero-buttons .btn-explore {
  padding: 1.25rem 2rem;
  background-color: #ffffff;
  color: #0f172a;
  font-weight: 500;
  border-radius: 1rem;
  border: 2px solid #f1f5f9;
  text-align: center;
}
.togo-features-widget.features-hero .hero-buttons .btn-explore:hover {
  border-color: rgba(253, 70, 33, 0.3);
}
.togo-features-widget.features-hero .hero-mockup {
  position: relative;
  z-index: 10;
  background-color: #ffffff;
  border-radius: 2.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid #f1f5f9;
  overflow: hidden;
}
.togo-features-widget.features-hero .hero-mockup img {
  width: 100%;
  height: auto;
}
.togo-features-widget.features-hero .glow-effect {
  position: absolute;
  top: 2.5rem;
  right: -2.5rem;
  width: 16rem;
  height: 16rem;
  background-color: rgba(253, 70, 33, 0.1);
  border-radius: 9999px;
  filter: blur(100px);
  z-index: -10;
}
.togo-features-widget.features-modules {
  padding: 6rem 0;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .togo-features-widget.features-modules {
    padding: 0rem;
  }
}
.togo-features-widget.features-modules .section-header {
  text-align: center;
  margin-bottom: 4rem;
  margin-top: 2rem;
}
.togo-features-widget.features-modules .section-header h2 {
  font-size: 1.875rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .togo-features-widget.features-modules .section-header h2 {
    font-size: 2rem;
  }
}
.togo-features-widget.features-modules .section-header p {
  font-size: 1.125rem;
  color: #64748b;
  font-weight: 500;
}
.togo-features-widget.features-modules .modules-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .togo-features-widget.features-modules .modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .togo-features-widget.features-modules .modules-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.togo-features-widget.features-modules .module-card {
  padding: 2.5rem;
  border-radius: 3rem;
  border: 1px solid #f1f5f9;
  background-color: #ffffff;
  transition: all 0.5s ease;
  cursor: pointer;
}
.togo-features-widget.features-modules .module-card:hover {
  border-color: rgba(253, 70, 33, 0.2);
  box-shadow: 0 25px 50px -12px rgba(226, 232, 240, 0.5);
}
.togo-features-widget.features-modules .module-card:hover .card-icon {
  background-color: #fd4621;
  color: #ffffff;
}
.togo-features-widget.features-modules .module-card:hover .arrow-icon {
  transform: translateX(0.5rem);
}
.togo-features-widget.features-modules .module-card .card-icon {
  width: 4rem;
  height: 4rem;
  background-color: #f8fafc;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fd4621;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.togo-features-widget.features-modules .module-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}
.togo-features-widget.features-modules .module-card p {
  color: #64748b;
  line-height: 1.625;
  font-weight: 500;
  margin-bottom: 2rem;
}
.togo-features-widget.features-modules .module-card .card-footer {
  padding-top: 1.5rem;
  border-top: 1px solid #f8fafc;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.togo-features-widget.features-modules .module-card .card-footer span {
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.togo-features-widget.features-modules .module-card .card-footer .arrow-icon {
  color: #fd4621;
  transition: transform 0.3s;
}
.togo-features-widget.features-infra {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .togo-features-widget.features-infra {
    padding: 0;
  }
}
.togo-features-widget.features-infra .infra-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .togo-features-widget.features-infra .infra-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .togo-features-widget.features-infra .infra-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.togo-features-widget.features-infra .infra-card {
  padding: 2rem;
  border-radius: 2.25rem;
  border: 1px solid #f1f5f9;
  background-color: #ffffff;
  transition: all 0.3s;
}
.togo-features-widget.features-infra .infra-card:hover {
  background-color: #fd4621;
  border-color: #fd4621;
  box-shadow: 0 20px 25px -5px rgba(253, 70, 33, 0.2);
}
.togo-features-widget.features-infra .infra-card:hover .card-icon {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}
.togo-features-widget.features-infra .infra-card:hover h3 {
  color: #ffffff;
}
.togo-features-widget.features-infra .infra-card:hover p {
  color: rgba(255, 255, 255, 0.8);
}
.togo-features-widget.features-infra .infra-card .card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  background-color: #fff5f2;
  color: #fd4621;
}
.togo-features-widget.features-infra .infra-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.togo-features-widget.features-infra .infra-card p {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.625;
  color: #64748b;
}
.togo-features-widget.features-marketplace {
  padding: 6rem 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .togo-features-widget.features-marketplace {
    padding: 1rem 0;
  }
}
.togo-features-widget.features-marketplace .marketplace-bg {
  position: absolute;
  inset: 0;
  background-color: rgba(253, 70, 33, 0.05);
  transform: skewY(-3deg) translateY(5rem);
  transform-origin: right;
  z-index: -1;
}
.togo-features-widget.features-marketplace h2 {
  text-align: center;
  color: #ffffff;
  font-size: 1.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .togo-features-widget.features-marketplace h2 {
    font-size: 3rem;
  }
}
.togo-features-widget.features-marketplace p.main-desc {
  text-align: center;
  color: #94a3b8;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 5rem;
}
.togo-features-widget.features-marketplace .market-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .togo-features-widget.features-marketplace .market-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .togo-features-widget.features-marketplace .market-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.togo-features-widget.features-marketplace .market-card {
  padding: 2.5rem;
  border-radius: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.05);
  transition: all 0.3s;
}
.togo-features-widget.features-marketplace .market-card:hover {
  background-color: #ffffff;
  border-color: #f1f5f9;
  transform: translateY(-0.5rem);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
}
.togo-features-widget.features-marketplace .market-card:hover h3 {
  color: #0f172a;
}
.togo-features-widget.features-marketplace .market-card:hover ul li {
  color: #475569;
}
.togo-features-widget.features-marketplace .market-card:hover ul li i {
  color: #22c55e;
}
.togo-features-widget.features-marketplace .market-card:hover .card-icon {
  background-color: #0f172a !important;
  color: #ffffff !important;
}
.togo-features-widget.features-marketplace .market-card .card-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: #fd4621;
  color: #ffffff;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 2rem;
}
.togo-features-widget.features-marketplace .market-card h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.togo-features-widget.features-marketplace .market-card ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.togo-features-widget.features-marketplace .market-card ul li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #cbd5e1;
  font-size: 0.875rem;
  font-weight: 500;
}
.togo-features-widget.features-marketplace .market-card ul li i {
  color: #fd4621;
}
.togo-features-widget.features-marketplace .market-card ul li i.is-green {
  color: #22c55e;
}
.togo-features-widget.features-design {
  padding: 6rem 0;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .togo-features-widget.features-design {
    padding: 3rem 0;
  }
}
@media (max-width: 768px) {
  .togo-features-widget.features-design .section-header h2 {
    font-size: 26px;
    line-height: 1.2;
  }
}
.togo-features-widget.features-design .design-grid-stats {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 5rem;
}
@media (min-width: 768px) {
  .togo-features-widget.features-design .design-grid-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .togo-features-widget.features-design .design-grid-stats {
    margin-bottom: 3rem;
  }
}
.togo-features-widget.features-design .design-grid-stats .stat-box {
  padding: 2rem;
  background-color: #f8fafc;
  border-radius: 1.5rem;
  border: 1px solid #f1f5f9;
}
.togo-features-widget.features-design .design-grid-stats .stat-box i {
  color: #fd4621;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  display: block;
}
.togo-features-widget.features-design .design-grid-stats .stat-box .stat-title {
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 0.5rem;
  font-size: 16px;
}
.togo-features-widget.features-design .design-grid-stats .stat-box h2 {
  font-size: 1.875rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}
.togo-features-widget.features-design .design-grid-stats .stat-box p {
  color: #64748b;
  font-weight: 400;
  font-size: 16px;
}
.togo-features-widget.features-design .design-preview-box {
  position: relative;
  padding: 0.25rem;
  background-color: #0f172a;
  border-radius: 3.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
@media (max-width: 768px) {
  .togo-features-widget.features-design .design-preview-box {
    border-radius: 24px;
  }
}
.togo-features-widget.features-design .design-preview-box img {
  border-radius: 3.25rem;
  width: 100%;
  height: auto;
  opacity: 0.8;
}
@media (max-width: 768px) {
  .togo-features-widget.features-design .design-preview-box img {
    border-radius: 24px;
    min-height: 220px;
  }
}
.togo-features-widget.features-design .design-preview-box .overlay-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.togo-features-widget.features-design .design-preview-box .overlay-content .inner-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(24px);
  padding: 3rem;
  border-radius: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  text-align: center;
  max-width: 28rem;
}
@media (max-width: 768px) {
  .togo-features-widget.features-design .design-preview-box .overlay-content .inner-card {
    padding: 1.5rem;
    border-radius: 1.5rem;
    width: 88%;
    max-width: 100%;
  }
}
@media (max-width: 450px) {
  .togo-features-widget.features-design .design-preview-box .overlay-content .inner-card {
    padding: 0.5rem;
    border-radius: 1.5rem;
    width: 85%;
    max-width: 100%;
  }
}
.togo-features-widget.features-design .design-preview-box .overlay-content .inner-card h3 {
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #FFFFFF;
}
@media (max-width: 768px) {
  .togo-features-widget.features-design .design-preview-box .overlay-content .inner-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
}
.togo-features-widget.features-design .design-preview-box .overlay-content .inner-card p {
  font-weight: 500;
  opacity: 0.9;
  font-size: 0.875rem;
  margin-bottom: 2rem;
  line-height: 1.625;
}
@media (max-width: 768px) {
  .togo-features-widget.features-design .design-preview-box .overlay-content .inner-card p {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }
}
.togo-features-widget.features-design .design-preview-box .overlay-content .inner-card button, .togo-features-widget.features-design .design-preview-box .overlay-content .inner-card .btn-library {
  color: #FFFFFF !important;
  width: 100%;
  padding: 1rem 0;
  background-color: #fd4621 !important;
  border-radius: 1rem;
  font-weight: 600;
  transition: transform 0.3s;
  display: block;
  text-decoration: none !important;
  border: none !important;
  cursor: pointer;
}
@media (max-width: 768px) {
  .togo-features-widget.features-design .design-preview-box .overlay-content .inner-card button, .togo-features-widget.features-design .design-preview-box .overlay-content .inner-card .btn-library {
    padding: 0.75rem 0;
    font-size: 0.875rem;
  }
}
.togo-features-widget.features-design .design-preview-box .overlay-content .inner-card button:hover, .togo-features-widget.features-design .design-preview-box .overlay-content .inner-card .btn-library:hover {
  transform: scale(1.05);
}
.togo-features-widget.features-tech {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .togo-features-widget.features-tech {
    padding: 3rem 0;
  }
}
.togo-features-widget.features-tech .tech-layout {
  display: grid;
  gap: 5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .togo-features-widget.features-tech .tech-layout {
    grid-template-columns: 1fr 1fr;
  }
}
.togo-features-widget.features-tech .tech-text h2 {
  font-size: 2.25rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .togo-features-widget.features-tech .tech-text h2 {
    font-size: 3rem;
  }
}
.togo-features-widget.features-tech .tech-text p.main-p {
  font-size: 1.125rem;
  color: #475569;
  margin-bottom: 3rem;
  font-weight: 500;
  line-height: 1.625;
}
.togo-features-widget.features-tech .tech-text .tech-list {
  display: grid;
  gap: 2rem;
}
@media (min-width: 640px) {
  .togo-features-widget.features-tech .tech-text .tech-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.togo-features-widget.features-tech .tech-text .tech-list .tech-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.togo-features-widget.features-tech .tech-text .tech-list .tech-item .icon-bg {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background-color: #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fd4621;
}
.togo-features-widget.features-tech .tech-text .tech-list .tech-item span {
  font-weight: 500;
  color: #1e293b;
}
.togo-features-widget.features-tech .tech-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.togo-features-widget.features-tech .tech-stats-grid .stat-card {
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(226, 232, 240, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.togo-features-widget.features-tech .tech-stats-grid .stat-card.offset-y {
  transform: translateY(2rem);
}
.togo-features-widget.features-tech .tech-stats-grid .stat-card .val {
  font-size: 3rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}
.togo-features-widget.features-tech .tech-stats-grid .stat-card .val.is-primary {
  color: #fd4621;
}
.togo-features-widget.features-tech .tech-stats-grid .stat-card .lbl {
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.togo-features-widget.features-cta {
  padding: 6rem 0;
  background-color: #ffffff;
}
.togo-features-widget.features-cta .cta-box {
  background-color: #fd4621;
  border-radius: 3.5rem;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(253, 70, 33, 0.2);
}
@media (min-width: 768px) {
  .togo-features-widget.features-cta .cta-box {
    padding: 5rem;
  }
}
.togo-features-widget.features-cta .cta-box .glow-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  filter: blur(100px);
  transform: translate(50%, -50%);
}
.togo-features-widget.features-cta .cta-box .glow-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24rem;
  height: 24rem;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 9999px;
  filter: blur(100px);
  transform: translate(-50%, 50%);
}
.togo-features-widget.features-cta .cta-box .cta-content {
  position: relative;
  z-index: 10;
}
.togo-features-widget.features-cta .cta-box .cta-content h2 {
  color: #ffffff;
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .togo-features-widget.features-cta .cta-box .cta-content h2 {
    font-size: 3.75rem;
  }
}
.togo-features-widget.features-cta .cta-box .cta-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 3rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
.togo-features-widget.features-cta .cta-box .cta-content .cta-btns {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .togo-features-widget.features-cta .cta-box .cta-content .cta-btns {
    flex-direction: row;
  }
}
.togo-features-widget.features-cta .cta-box .cta-content .cta-btns .btn-primary {
  padding: 1.25rem 3rem;
  background-color: #ffffff;
  color: #fd4621;
  font-weight: 600;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.togo-features-widget.features-cta .cta-box .cta-content .cta-btns .btn-secondary {
  padding: 1.25rem 3rem;
  background-color: rgba(253, 70, 33, 0.6);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.2);
  font-weight: 600;
  border-radius: 1rem;
}
.togo-features-widget.features-cta .cta-box .cta-content .cta-btns .btn-secondary:hover {
  background-color: rgba(253, 70, 33, 0.5);
}

.togo-addons-widget {
  position: relative;
  overflow-x: clip;
}
.togo-addons-widget.addons-hero {
  padding: 10rem 0 5rem;
  background-color: #f8fafc;
  border-bottom: 1px solid #f1f5f9;
  overflow: hidden;
}
.togo-addons-widget.addons-hero .glow-effect {
  position: absolute;
  top: 0;
  right: 0;
  width: 16rem;
  height: 16rem;
  background-color: rgba(253, 70, 33, 0.1);
  border-radius: 9999px;
  filter: blur(120px);
  transform: translate(50%, -50%);
  opacity: 0.3;
  z-index: 1;
}
.togo-addons-widget.addons-hero .badge-eco {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background-color: rgba(253, 70, 33, 0.05);
  color: #fd4621;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.togo-addons-widget.addons-hero .badge-eco i {
  font-size: 0.875rem;
}
.togo-addons-widget.addons-hero h1 {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.1;
  color: #0f172a;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}
@media (min-width: 768px) {
  .togo-addons-widget.addons-hero h1 {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .togo-addons-widget.addons-hero h1 {
    font-size: 3.75rem;
  }
}
.togo-addons-widget.addons-hero h1 span {
  color: #fd4621;
}
.togo-addons-widget.addons-hero .hero-desc {
  max-width: 42rem;
  margin: 0 auto;
  font-size: 1.25rem;
  color: #475569;
  line-height: 1.625;
  font-weight: 500;
}
.togo-addons-widget .addons-tabs-bar {
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 4.7rem;
  z-index: 49;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #f1f5f9;
  padding: 1.5rem 0;
}
@media (max-width: 768px) {
  .togo-addons-widget .addons-tabs-bar {
    top: 3.7rem;
  }
}
.admin-bar .togo-addons-widget .addons-tabs-bar {
  top: calc(2.7rem + 32px);
}
@media (max-width: 782px) {
  .admin-bar .togo-addons-widget .addons-tabs-bar {
    top: calc(0.7rem + 54px);
  }
}

.elementor-widget-togo_addons_grid,
.elementor-widget-togo_addons_grid .elementor-widget-container,
.e-con-parent:has(.elementor-widget-togo_addons_grid),
.e-con:has(.elementor-widget-togo_addons_grid),
.elementor-widget-togo_addons_hero,
.elementor-widget-togo_addons_hero .elementor-widget-container,
.e-con-parent:has(.elementor-widget-togo_addons_hero),
.e-con:has(.elementor-widget-togo_addons_hero) {
  overflow-y: visible !important;
  overflow-x: clip !important;
  clip-path: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.e-con:has(.elementor-widget-togo_addons_grid) > .e-con-inner,
.e-con:has(.elementor-widget-togo_addons_hero) > .e-con-inner {
  padding: 0 !important;
  margin: 0 !important;
}

.togo-addons-widget .addons-tabs-bar .tabs-wrap {
  display: flex;
  gap: 0.5rem;
}
@media (min-width: 769px) {
  .togo-addons-widget .addons-tabs-bar .tabs-wrap {
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .togo-addons-widget .addons-tabs-bar .tabs-wrap {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 1.25rem;
    margin: 0 -1.25rem;
  }
  .togo-addons-widget .addons-tabs-bar .tabs-wrap::-webkit-scrollbar {
    display: none;
  }
  .togo-addons-widget .addons-tabs-bar .tabs-wrap {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
}
.togo-addons-widget .addons-tabs-bar .tab-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.3s;
  border: 1px solid #e2e8f0;
  background-color: #ffffff;
  color: #475569;
  cursor: pointer;
}
.togo-addons-widget .addons-tabs-bar .tab-btn:hover {
  border-color: rgba(253, 70, 33, 0.4);
  color: #fd4621;
}
.togo-addons-widget .addons-tabs-bar .tab-btn.active {
  background-color: #fd4621;
  color: #ffffff;
  border-color: #fd4621;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.togo-addons-widget .addons-tabs-bar .tab-btn.active .count {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}
.togo-addons-widget .addons-tabs-bar .tab-btn .count {
  font-size: 10px;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  background-color: #f1f5f9;
  color: #94a3b8;
  transition: all 0.3s;
}
.togo-addons-widget .addons-grid-section {
  padding: 6rem 0;
  overflow: visible;
}
.togo-addons-widget .addons-grid-section .togo-landing-container {
  max-width: 1280px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (max-width: 1024px) {
  .togo-addons-widget .addons-grid-section .togo-landing-container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
.togo-addons-widget .addons-grid-section .addons-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .togo-addons-widget .addons-grid-section .addons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .togo-addons-widget .addons-grid-section .addons-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.togo-addons-widget .addons-grid-section .addon-card {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border-radius: 2.5rem;
  background-color: #ffffff;
  border: 1px solid #f1f5f9;
  transition: all 0.5s ease;
}
.togo-addons-widget .addons-grid-section .addon-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 25px 50px -12px rgba(226, 232, 240, 0.5);
}
.togo-addons-widget .addons-grid-section .addon-card .card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.togo-addons-widget .addons-grid-section .addon-card .card-head .icon-box {
  width: 4rem;
  height: 4rem;
  background-color: #f8fafc;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fd4621;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.togo-addons-widget .addons-grid-section .addon-card .card-head .price-box {
  text-align: right;
}
.togo-addons-widget .addons-grid-section .addon-card .card-head .price-box .lbl {
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
  display: block;
}
.togo-addons-widget .addons-grid-section .addon-card .card-head .price-box .val {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
}
.togo-addons-widget .addons-grid-section .addon-card .card-body {
  flex-grow: 1;
}
.togo-addons-widget .addons-grid-section .addon-card .card-body .title-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.togo-addons-widget .addons-grid-section .addon-card .card-body .title-row h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}
.togo-addons-widget .addons-grid-section .addon-card .card-body .title-row h2 a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}
.togo-addons-widget .addons-grid-section .addon-card .card-body .title-row h2 a:hover {
  color: #fd4621;
}
.togo-addons-widget .addons-grid-section .addon-card .card-body .title-row .badge-pro {
  font-size: 10px;
  background-color: #dcfce7;
  color: #15803d;
  padding: 0.125rem 0.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
}
.togo-addons-widget .addons-grid-section .addon-card .card-body p {
  color: #475569;
  font-weight: 500;
  line-height: 1.625;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 16px;
}
.togo-addons-widget .addons-grid-section .addon-card:hover .icon-box {
  background-color: #fd4621;
  color: #ffffff;
}
.togo-addons-widget .addons-grid-section .addon-card .card-foot {
  padding-top: 1.5rem;
  border-top: 1px solid #f8fafc;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.togo-addons-widget .addons-grid-section .addon-card .card-foot .compat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.togo-addons-widget .addons-grid-section .addon-card .card-foot .compat .dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background-color: #22c55e;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.togo-addons-widget .addons-grid-section .addon-card .card-foot .compat span {
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
}
.togo-addons-widget .addons-grid-section .addon-card .card-foot .details-link {
  color: #fd4621;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
}
.togo-addons-widget .addons-grid-section .addon-card .card-foot .details-link:hover {
  gap: 0.75rem;
}
.togo-addons-widget .addons-empty {
  padding: 5rem 0;
  text-align: center;
}
.togo-addons-widget .addons-empty i {
  font-size: 3.75rem;
  color: #f1f5f9;
  margin-bottom: 1rem;
  display: block;
}
.togo-addons-widget .addons-empty h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #94a3b8;
}
.togo-addons-widget .addons-empty button {
  margin-top: 1rem;
  color: #fd4621;
  font-weight: 600;
  font-size: 1rem;
  background: none;
  border: none;
  cursor: pointer;
}
.togo-addons-widget .addons-empty button:hover {
  text-decoration: underline;
}
.togo-addons-widget.addons-cta {
  padding: 6rem 0;
  background-color: #0f172a;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.togo-addons-widget.addons-cta .cta-bg-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  z-index: -1;
  pointer-events: none;
}
.togo-addons-widget.addons-cta .cta-bg-icon i {
  font-size: 25rem;
  color: #fd4621;
  transform: translate(-50%, 50%);
  display: block;
}
.togo-addons-widget.addons-cta .cta-inner {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}
.togo-addons-widget.addons-cta .cta-inner h2 {
  color: #ffffff;
  font-size: 1.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}
@media (min-width: 768px) {
  .togo-addons-widget.addons-cta .cta-inner h2 {
    font-size: 2.25rem;
  }
}
.togo-addons-widget.addons-cta .cta-inner p.main-desc {
  color: #94a3b8;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 2.5rem;
  line-height: 1.625;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
.togo-addons-widget.addons-cta .cta-inner .cta-buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) {
  .togo-addons-widget.addons-cta .cta-inner .cta-buttons {
    flex-direction: row;
  }
}
.togo-addons-widget.addons-cta .cta-inner .cta-buttons a,
.togo-addons-widget.addons-cta .cta-inner .cta-buttons button {
  padding: 1.25rem 2.5rem;
  border-radius: 1rem;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
}
.togo-addons-widget.addons-cta .cta-inner .cta-buttons .btn-primary {
  background-color: #fd4621;
  color: #ffffff;
}
.togo-addons-widget.addons-cta .cta-inner .cta-buttons .btn-primary:hover {
  filter: brightness(1.1);
}
.togo-addons-widget.addons-cta .cta-inner .cta-buttons .btn-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.togo-addons-widget.addons-cta .cta-inner .cta-buttons .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.togo-addons-widget.addons-cta .cta-inner .cta-trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
}
.togo-addons-widget.addons-cta .cta-inner .cta-trust-bar .trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.togo-addons-widget.addons-cta .cta-inner .cta-trust-bar .trust-item i {
  color: #fd4621;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.togo-contact-widget {
  position: relative;
  overflow: hidden;
}
.togo-contact-widget.contact-hero {
  padding: 10rem 0 5rem;
  background-color: #f8fafc;
}
.togo-contact-widget.contact-hero .glow-effect {
  position: absolute;
  top: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  background-color: rgba(253, 70, 33, 0.1);
  border-radius: 9999px;
  filter: blur(150px);
  transform: translate(50%, -50%);
  opacity: 0.2;
  z-index: 1;
}
.togo-contact-widget.contact-hero h1 {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.1;
  color: #0f172a;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}
@media (min-width: 768px) {
  .togo-contact-widget.contact-hero h1 {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .togo-contact-widget.contact-hero h1 {
    font-size: 3.75rem;
  }
}
.togo-contact-widget.contact-hero h1 span {
  color: #fd4621;
}
.togo-contact-widget.contact-hero .hero-desc {
  max-width: 42rem;
  margin: 0 auto;
  font-size: 1.25rem;
  color: #475569;
  line-height: 1.625;
  font-weight: 500;
}
.togo-contact-widget.contact-main {
  padding: 6rem 0;
}
@media (max-width: 1024px) {
  .togo-contact-widget.contact-main {
    padding: 2rem 0;
  }
}
.togo-contact-widget.contact-main .contact-layout {
  display: grid;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .togo-contact-widget.contact-main .contact-layout {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1024px) {
  .togo-contact-widget.contact-main .contact-layout {
    gap: 0;
  }
}
.togo-contact-widget.contact-main .form-container {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 2.5rem;
  border: 1px solid #f1f5f9;
}
@media (min-width: 768px) {
  .togo-contact-widget.contact-main .form-container {
    padding: 2.25rem;
  }
}
.togo-contact-widget.contact-main .form-container h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1.25rem;
  letter-spacing: -0.025em;
}
@media (min-width: 768px) {
  .togo-contact-widget.contact-main .form-container h2 {
    font-size: 1.875rem;
  }
}
.togo-contact-widget.contact-main .info-container {
  display: flex;
  flex-direction: column;
  padding-top: 2.25rem;
  height: 100%;
}
.togo-contact-widget.contact-main .info-container .info-section {
  margin-bottom: 3.5rem;
}
.togo-contact-widget.contact-main .info-container .info-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.togo-contact-widget.contact-main .info-container .info-section h3 .icon-bg {
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(253, 70, 33, 0.05);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fd4621;
  font-size: 1.125rem;
}
.togo-contact-widget.contact-main .info-container .info-section .info-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.togo-contact-widget.contact-main .info-container .info-section .info-list .info-item {
  display: flex;
  gap: 1rem;
}
.togo-contact-widget.contact-main .info-container .info-section .info-list .info-item .i-icon {
  color: #fd4621;
  margin-top: 0.25rem;
}
.togo-contact-widget.contact-main .info-container .info-section .info-list .info-item .i-label {
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}
.togo-contact-widget.contact-main .info-container .info-section .info-list .info-item .i-value {
  color: #475569;
  font-weight: 400;
  font-size: 1rem;
  margin: 0;
}
.togo-contact-widget.contact-main .info-container .info-section .info-list .info-item a {
  color: #fd4621;
  font-weight: 600;
}
.togo-contact-widget.contact-main .info-container .info-section .info-list .info-item a:hover {
  text-decoration: underline;
}
.togo-contact-widget.contact-main .info-container .commitment-card {
  padding: 2rem;
  border-radius: 2rem;
  background-color: #0f172a;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.togo-contact-widget.contact-main .info-container .commitment-card .glow {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  background-color: #fd4621;
  border-radius: 9999px;
  filter: blur(60px);
  opacity: 0.2;
  transform: translate(50%, 50%);
}
.togo-contact-widget.contact-main .info-container .commitment-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  color: #FFFFFF;
}
.togo-contact-widget.contact-main .info-container .commitment-card p {
  color: #94a3b8;
  font-weight: 500;
  line-height: 1.625;
  margin-bottom: 13px;
  position: relative;
  z-index: 1;
}
.togo-contact-widget.contact-main .info-container .commitment-card .author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}
.togo-contact-widget.contact-main .info-container .commitment-card .author img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 2px solid #fd4621;
}
.togo-contact-widget.contact-main .info-container .commitment-card .author .details {
  display: flex;
  flex-direction: column;
}
.togo-contact-widget.contact-main .info-container .commitment-card .author .details .n {
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
  margin: 0;
}
.togo-contact-widget.contact-main .info-container .commitment-card .author .details .t {
  font-size: 10px;
  color: #fd4621;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: 0;
}
.togo-contact-widget.contact-trust {
  padding: 6rem 0;
  background-color: #f8fafc;
  border-top: 1px solid #f1f5f9;
}
.togo-contact-widget.contact-trust .trust-inner {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}
.togo-contact-widget.contact-trust .trust-inner .badge-trust {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  color: #64748b;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.togo-contact-widget.contact-trust .trust-inner .badge-trust i {
  color: #fd4621;
}
.togo-contact-widget.contact-trust .trust-inner h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}
@media (min-width: 768px) {
  .togo-contact-widget.contact-trust .trust-inner h2 {
    font-size: 1.875rem;
  }
}
.togo-contact-widget.contact-trust .trust-inner p {
  font-size: 1.125rem;
  color: #475569;
  font-weight: 600;
  line-height: 1.625;
}

.togo-contact-form-wp .wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 1.5rem;
}
.togo-contact-form-wp label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #334155;
  margin-left: 0.25rem;
  margin-bottom: 0.5rem;
}
.togo-contact-form-wp input[type=text],
.togo-contact-form-wp input[type=email],
.togo-contact-form-wp input[type=tel],
.togo-contact-form-wp textarea,
.togo-contact-form-wp select {
  width: 100%;
  padding: 1rem 1.25rem;
  background-color: #f8fafc;
  border-radius: 1rem;
  border: 1px solid #f1f5f9;
  font-family: inherit;
  font-weight: 600;
  color: #0f172a;
  transition: all 0.3s;
}
.togo-contact-form-wp input[type=text]:focus,
.togo-contact-form-wp input[type=email]:focus,
.togo-contact-form-wp input[type=tel]:focus,
.togo-contact-form-wp textarea:focus,
.togo-contact-form-wp select:focus {
  outline: none;
  background-color: #ffffff;
  border-color: #fd4621;
  box-shadow: 0 0 0 2px rgba(253, 70, 33, 0.1);
}
.togo-contact-form-wp input[type=text]::placeholder,
.togo-contact-form-wp input[type=email]::placeholder,
.togo-contact-form-wp input[type=tel]::placeholder,
.togo-contact-form-wp textarea::placeholder,
.togo-contact-form-wp select::placeholder {
  color: #94a3b8;
  font-weight: 500;
}
.togo-contact-form-wp .grid-2 {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .togo-contact-form-wp .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.togo-contact-form-wp input[type=submit] {
  width: 100%;
  padding: 1.25rem;
  background-color: #fd4621;
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 1rem;
}
.togo-contact-form-wp input[type=submit]:hover {
  background-color: #e63d1b;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(253, 70, 33, 0.3);
}
.togo-contact-form-wp .wpcf7-response-output {
  margin: 2rem 0 0;
  padding: 1.5rem;
  border-radius: 1rem;
  font-weight: 600;
  text-align: center;
  border: 1px solid transparent !important;
}
.togo-contact-form-wp .wpcf7-mail-sent-ok {
  background: #f0fdf4;
  border-color: #dcfce7 !important;
  color: #166534;
}
.togo-contact-form-wp .wpcf7-validation-errors {
  background: #fef2f2;
  border-color: #fee2e2 !important;
  color: #991b1b;
}

.togo-cf7-form .form-row {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .togo-cf7-form .form-row {
    grid-template-columns: 1fr 1fr;
  }
}
.togo-cf7-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.togo-cf7-form .form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #334155;
  margin-left: 0.25rem;
}
.togo-cf7-form .form-group input[type=text],
.togo-cf7-form .form-group input[type=email],
.togo-cf7-form .form-group select,
.togo-cf7-form .form-group textarea {
  width: 100%;
  padding: 0.875rem 1.25rem;
  background-color: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 1.25rem;
  font-weight: 600;
  font-size: 1rem;
  color: #0f172a;
  transition: all 0.3s ease;
  outline: none;
}
.togo-cf7-form .form-group input[type=text]:focus,
.togo-cf7-form .form-group input[type=email]:focus,
.togo-cf7-form .form-group select:focus,
.togo-cf7-form .form-group textarea:focus {
  background-color: #ffffff;
  border-color: #fd4621;
  box-shadow: 0 0 0 2px rgba(253, 70, 33, 0.2);
}
.togo-cf7-form .form-group input[type=text]::placeholder,
.togo-cf7-form .form-group input[type=email]::placeholder,
.togo-cf7-form .form-group select::placeholder,
.togo-cf7-form .form-group textarea::placeholder {
  color: #94a3b8;
}
.togo-cf7-form .form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23475569'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  background-size: 1rem;
  cursor: pointer;
}
.togo-cf7-form .form-group textarea {
  resize: none;
  min-height: 90px;
}
.togo-cf7-form .form-submit input[type=submit] {
  width: 100%;
  padding: 1.125rem;
  background-color: #fd4621;
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0;
}
.togo-cf7-form .form-submit input[type=submit]:hover {
  background-color: #e63d1b;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(253, 70, 33, 0.2);
}
.togo-cf7-form .form-submit .ajax-loader {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
}
.togo-cf7-form .wpcf7-not-valid-tip {
  font-size: 0.75rem;
  font-weight: 600;
  color: #ef4444;
  margin-top: 0.25rem;
  margin-left: 0.25rem;
}
.togo-cf7-form .wpcf7-response-output {
  margin: 1.5rem 0 0 !important;
  padding: 1rem 1.5rem !important;
  border-radius: 1.25rem !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  text-align: center !important;
  border: 1px solid transparent !important;
}
.togo-cf7-form .wpcf7-mail-sent-ok {
  background-color: #f0fdf4 !important;
  border-color: #dcfce7 !important;
  color: #15803d !important;
}
.togo-cf7-form .wpcf7-validation-errors,
.togo-cf7-form .wpcf7-acceptance-missing {
  background-color: #fef2f2 !important;
  border-color: #fee2e2 !important;
  color: #b91c1c !important;
}

.togo-addon-detail-page {
  background-color: #ffffff;
  min-height: 100vh;
  color: #0f172a;
}
.togo-addon-detail-page .togo-landing-container {
  max-width: 1280px;
  margin: 0 auto;
}
.togo-addon-detail-page .grid {
  display: grid;
}
@media (min-width: 1024px) {
  .togo-addon-detail-page .grid.lg\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .togo-addon-detail-page .grid.lg\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) {
  .togo-addon-detail-page .grid.md\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .togo-addon-detail-page .lg\:col-span-2 {
    grid-column: span 2/span 2;
  }
}
.togo-addon-detail-page .togo-addon-nav {
  padding-top: 6.7rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #f1f5f9;
}
@media (max-width: 768px) {
  .togo-addon-detail-page .togo-addon-nav {
    padding-top: 5.5rem;
  }
}
.togo-addon-detail-page .togo-addon-nav .togo-back-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #64748b;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.togo-addon-detail-page .togo-addon-nav .togo-back-btn i {
  transition: transform 0.3s ease;
}
.togo-addon-detail-page .togo-addon-nav .togo-back-btn:hover {
  color: #fd4621;
}
.togo-addon-detail-page .togo-addon-nav .togo-back-btn:hover i {
  transform: translateX(-4px);
}
.togo-addon-detail-page .addon-hero {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 768px) {
  .togo-addon-detail-page .addon-hero {
    padding: 3rem 0;
  }
}
.togo-addon-detail-page .addon-hero .hero-decorative-bg {
  background-color: #f8fafc;
  transform: skewX(-15deg) translateX(25%);
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 50%;
  z-index: -1;
  display: block;
}
.togo-addon-detail-page .addon-hero .hero-content .addon-icon-box {
  width: 5rem;
  height: 5rem;
  background-color: #fd4621;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.875rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(253, 70, 33, 0.3);
}
@media (max-width: 768px) {
  .togo-addon-detail-page .addon-hero .hero-content .addon-icon-box {
    width: 4rem;
    height: 4rem;
    font-size: 1.5rem;
    border-radius: 16px;
  }
}
.togo-addon-detail-page .addon-hero .hero-content .addon-badges {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.togo-addon-detail-page .addon-hero .hero-content .addon-badges span {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.togo-addon-detail-page .addon-hero .hero-content .addon-badges .bg-primary-50 {
  background-color: #fff5f2;
  color: #fd4621;
  font-weight: 600;
}
.togo-addon-detail-page .addon-hero .hero-content .addon-badges .bg-slate-100 {
  background-color: #f1f5f9;
  color: #475569;
  font-weight: 600;
}
.togo-addon-detail-page .addon-hero .hero-content h1 {
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .togo-addon-detail-page .addon-hero .hero-content h1 {
    font-size: 3.75rem;
  }
}
.togo-addon-detail-page .addon-hero .hero-content .addon-description-text {
  font-size: 1.25rem;
  color: #475569;
  line-height: 1.625;
  font-weight: 500;
  margin-bottom: 2.5rem;
}
.togo-addon-detail-page .addon-hero .hero-content .addon-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.togo-addon-detail-page .addon-hero .hero-content .addon-features-list .feat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.togo-addon-detail-page .addon-hero .hero-content .addon-features-list .feat-item .check-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: #f0fdf4;
  color: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
}
.togo-addon-detail-page .addon-hero .hero-content .addon-features-list .feat-item span {
  font-weight: 600;
  color: #334155;
}
@media (min-width: 1024px) {
  .togo-addon-detail-page .addon-hero .hero-sidebar {
    padding-left: 3rem;
  }
}
.togo-addon-detail-page .addon-hero .hero-sidebar .buy-card {
  background-color: #ffffff;
  padding: 2.5rem;
  border-radius: 40px;
  border: 1px solid #f1f5f9;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.05);
}
.togo-addon-detail-page .addon-hero .hero-sidebar .buy-card .price-box {
  margin-bottom: 2.5rem;
}
.togo-addon-detail-page .addon-hero .hero-sidebar .buy-card .price-box .text-slate-400 {
  font-size: 0.8rem;
  font-weight: 800;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
  display: block;
}
.togo-addon-detail-page .addon-hero .hero-sidebar .buy-card .price-box .price-value {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.togo-addon-detail-page .addon-hero .hero-sidebar .buy-card .price-box .price-value .text-6xl {
  font-size: 4.5rem;
  font-weight: 800;
  color: #1e293b;
  line-height: 0.9;
}
.togo-addon-detail-page .addon-hero .hero-sidebar .buy-card .price-box .price-value .text-slate-500 {
  color: #64748b;
  font-weight: 600;
  font-size: 1.25rem;
}
.togo-addon-detail-page .addon-hero .hero-sidebar .buy-card .buy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 1.25rem;
  background-color: #ff4721;
  color: #ffffff;
  font-weight: 500;
  font-size: 1.1rem;
  border-radius: 1.25rem;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.togo-addon-detail-page .addon-hero .hero-sidebar .buy-card .buy-btn:hover {
  background-color: #e63d1b;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 71, 33, 0.2);
}
.togo-addon-detail-page .addon-hero .hero-sidebar .buy-card .buy-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}
.togo-addon-detail-page .addon-hero .hero-sidebar .buy-card .free-addon-header {
  margin-bottom: 1.75rem;
}
.togo-addon-detail-page .addon-hero .hero-sidebar .buy-card .free-addon-header .free-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  color: #065f46;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 9999px;
  margin-bottom: 1rem;
}
.togo-addon-detail-page .addon-hero .hero-sidebar .buy-card .free-addon-header .free-badge i {
  font-size: 0.75rem;
}
.togo-addon-detail-page .addon-hero .hero-sidebar .buy-card .free-addon-header .free-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}
.togo-addon-detail-page .addon-hero .hero-sidebar .buy-card .free-addon-header .free-card-desc {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 600;
  line-height: 1.6;
  margin: 0;
}
.togo-addon-detail-page .addon-hero .hero-sidebar .buy-card .free-addon-form {
  margin-bottom: 1rem;
}
.togo-addon-detail-page .addon-hero .hero-sidebar .buy-card .free-addon-form .free-form-field {
  margin-bottom: 0.875rem;
}
.togo-addon-detail-page .addon-hero .hero-sidebar .buy-card .free-addon-form .free-form-field .input-wrapper {
  position: relative;
}
.togo-addon-detail-page .addon-hero .hero-sidebar .buy-card .free-addon-form .free-form-field .input-wrapper i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 0.9rem;
  pointer-events: none;
}
.togo-addon-detail-page .addon-hero .hero-sidebar .buy-card .free-addon-form .free-form-field .input-wrapper input[type=email] {
  width: 100%;
  padding: 0.9rem 1rem 0.9rem 2.75rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #1e293b;
  background: #f8fafc;
  transition: all 0.2s ease;
  box-sizing: border-box;
}
.togo-addon-detail-page .addon-hero .hero-sidebar .buy-card .free-addon-form .free-form-field .input-wrapper input[type=email]::placeholder {
  color: #94a3b8;
}
.togo-addon-detail-page .addon-hero .hero-sidebar .buy-card .free-addon-form .free-form-field .input-wrapper input[type=email]:focus {
  outline: none;
  border-color: #ff4721;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 71, 33, 0.08);
}
.togo-addon-detail-page .addon-hero .hero-sidebar .buy-card .free-addon-form.form-sent {
  opacity: 0.5;
  pointer-events: none;
}
.togo-addon-detail-page .addon-hero .hero-sidebar .buy-card .free-addon-msg {
  padding: 0.85rem 1rem;
  border-radius: 0.875rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.togo-addon-detail-page .addon-hero .hero-sidebar .buy-card .free-addon-msg.success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}
.togo-addon-detail-page .addon-hero .hero-sidebar .buy-card .free-addon-msg.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}
.togo-addon-detail-page .addon-hero .hero-sidebar .buy-card .free-links-preview {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: #f8fafc;
  border-radius: 1rem;
  border: 1px dashed #e2e8f0;
}
.togo-addon-detail-page .addon-hero .hero-sidebar .buy-card .free-links-preview .preview-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #94a3b8;
  margin-bottom: 0.6rem;
}
.togo-addon-detail-page .addon-hero .hero-sidebar .buy-card .free-links-preview ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.togo-addon-detail-page .addon-hero .hero-sidebar .buy-card .free-links-preview ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #334155;
}
.togo-addon-detail-page .addon-hero .hero-sidebar .buy-card .free-links-preview ul li i {
  color: #ff4721;
  font-size: 0.85rem;
}
.togo-addon-detail-page .addon-hero .hero-sidebar .buy-card .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.togo-addon-detail-page .addon-hero .hero-sidebar .buy-card .trust-note {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
}
.togo-addon-detail-page .addon-hero .hero-sidebar .buy-card .trust-note i {
  margin-right: 0.25rem;
  font-size: 0.875rem;
}
.togo-addon-detail-page .addon-hero .hero-sidebar .buy-card .quick-specs {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid #f1f5f9;
}
.togo-addon-detail-page .addon-hero .hero-sidebar .buy-card .quick-specs h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #1e293b;
  letter-spacing: -0.02em;
}
.togo-addon-detail-page .addon-hero .hero-sidebar .buy-card .quick-specs .specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.togo-addon-detail-page .addon-hero .hero-sidebar .buy-card .quick-specs .specs-grid .spec-item span {
  display: block;
}
.togo-addon-detail-page .addon-hero .hero-sidebar .buy-card .quick-specs .specs-grid .spec-item .text-slate-400 {
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
  margin-bottom: 0.25rem;
}
.togo-addon-detail-page .addon-hero .hero-sidebar .buy-card .quick-specs .specs-grid .spec-item .text-slate-700 {
  font-size: 1.125rem;
  font-weight: 500;
  color: #334155;
}
.togo-addon-detail-page .addon-details {
  padding: 6rem 0;
  background-color: #ffffff;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}
@media (max-width: 768px) {
  .togo-addon-detail-page .addon-details {
    padding: 3rem 0;
  }
}
.togo-addon-detail-page .addon-details .how-it-works {
  margin-bottom: 4rem;
}
.togo-addon-detail-page .addon-details .how-it-works h2 {
  font-size: 1.875rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}
.togo-addon-detail-page .addon-details .how-it-works .prose {
  color: #475569;
  font-weight: 500;
  line-height: 1.625;
}
.togo-addon-detail-page .addon-details .how-it-works .prose p {
  margin-bottom: 1.5rem;
}
.togo-addon-detail-page .addon-details .feature-cards {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .togo-addon-detail-page .addon-details .feature-cards {
    grid-template-columns: 1fr 1fr;
  }
}
.togo-addon-detail-page .addon-details .feature-cards .f-card {
  padding: 2rem;
  border-radius: 32px;
  background-color: #f8fafc;
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
}
.togo-addon-detail-page .addon-details .feature-cards .f-card i {
  color: #fd4621;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  display: block;
}
.togo-addon-detail-page .addon-details .feature-cards .f-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #0f172a;
}
.togo-addon-detail-page .addon-details .feature-cards .f-card p {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}
.togo-addon-detail-page .addon-details .feature-cards .f-card:hover {
  border-color: #fd4621;
  background-color: #ffffff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}
.togo-addon-detail-page .addon-details .sidebar .requirements-box {
  background-color: #0f172a;
  color: #ffffff;
  padding: 2.5rem;
  border-radius: 32px;
  margin-bottom: 2rem;
}
.togo-addon-detail-page .addon-details .sidebar .requirements-box h4 {
  color: #ffffff !important;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.togo-addon-detail-page .addon-details .sidebar .requirements-box .req-list {
  padding: 0;
  list-style: none;
  margin: 0;
}
.togo-addon-detail-page .addon-details .sidebar .requirements-box .req-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #94a3b8 !important;
  font-weight: 600;
  margin-bottom: 1rem;
}
.togo-addon-detail-page .addon-details .sidebar .requirements-box .req-list li i {
  color: #fd4621;
}
.togo-addon-detail-page .addon-details .sidebar .help-box {
  padding: 2.5rem;
  border-radius: 32px;
  border: 1px solid #f1f5f9;
}
.togo-addon-detail-page .addon-details .sidebar .help-box h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #0f172a;
}
.togo-addon-detail-page .addon-details .sidebar .help-box p {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.togo-addon-detail-page .addon-details .sidebar .help-box .support-btn {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #fd4621;
  color: #fd4621;
  background: transparent;
  font-weight: 600;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.togo-addon-detail-page .addon-details .sidebar .help-box .support-btn:hover {
  background-color: #fd4621;
  color: #ffffff;
}
.togo-addon-detail-page .related-addons {
  padding: 6rem 0;
  background-color: #f8fafc;
}
@media (max-width: 768px) {
  .togo-addon-detail-page .related-addons {
    padding: 3rem 0;
  }
}
.togo-addon-detail-page .related-addons h2 {
  font-size: 1.875rem;
  font-weight: 500;
  margin-bottom: 3rem;
  color: #0f172a;
}
.togo-addon-detail-page .related-addons .related-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .togo-addon-detail-page .related-addons .related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.togo-addon-detail-page .related-addons .related-grid .addon-card {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border-radius: 2.5rem;
  background-color: #ffffff;
  border: 1px solid #f1f5f9;
  transition: all 0.5s ease;
  text-decoration: none;
  cursor: pointer;
}
.togo-addon-detail-page .related-addons .related-grid .addon-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 25px 50px -12px rgba(226, 232, 240, 0.5);
}
.togo-addon-detail-page .related-addons .related-grid .addon-card:hover .icon-box {
  background-color: #fd4621;
  color: #ffffff;
}
.togo-addon-detail-page .related-addons .related-grid .addon-card .card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.togo-addon-detail-page .related-addons .related-grid .addon-card .card-head .icon-box {
  width: 4rem;
  height: 4rem;
  background-color: #f8fafc;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fd4621;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.togo-addon-detail-page .related-addons .related-grid .addon-card .card-head .price-box {
  text-align: right;
}
.togo-addon-detail-page .related-addons .related-grid .addon-card .card-head .price-box .lbl {
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
  display: block;
}
.togo-addon-detail-page .related-addons .related-grid .addon-card .card-head .price-box .val {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
}
.togo-addon-detail-page .related-addons .related-grid .addon-card .card-body {
  flex-grow: 1;
}
.togo-addon-detail-page .related-addons .related-grid .addon-card .card-body .title-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.togo-addon-detail-page .related-addons .related-grid .addon-card .card-body .title-row h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}
.togo-addon-detail-page .related-addons .related-grid .addon-card .card-body .title-row h3 a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.5rem;
  font-weight: 600;
}
.togo-addon-detail-page .related-addons .related-grid .addon-card .card-body .title-row h3 a:hover {
  color: #fd4621;
}
.togo-addon-detail-page .related-addons .related-grid .addon-card .card-body p {
  color: #475569;
  font-weight: 500;
  line-height: 1.625;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.togo-addon-detail-page .related-addons .related-grid .addon-card .card-foot {
  padding-top: 1.5rem;
  border-top: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.togo-addon-detail-page .related-addons .related-grid .addon-card .card-foot .compat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.togo-addon-detail-page .related-addons .related-grid .addon-card .card-foot .compat .dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background-color: #22c55e;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.togo-addon-detail-page .related-addons .related-grid .addon-card .card-foot .compat span {
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
}
.togo-addon-detail-page .related-addons .related-grid .addon-card .card-foot .details-link {
  color: #fd4621;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all 0.3s;
}
.togo-addon-detail-page .related-addons .related-grid .addon-card .card-foot .details-link:hover {
  gap: 0.75rem;
}

body.blog .site-content,
body.archive .site-content {
  background-color: #f8fafc;
  padding-top: 8rem;
  padding-bottom: 5rem;
}
@media (max-width: 767px) {
  body.blog .site-content,
  body.archive .site-content {
    padding-top: 5rem;
    padding-bottom: 3rem;
  }
}
body.blog .container > .row,
body.archive .container > .row {
  align-items: flex-start;
}
body.blog #primary.content-area,
body.archive #primary.content-area {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
body.blog article.type-post,
body.archive article.type-post {
  background-color: #ffffff;
  border-radius: 1.5rem;
  border: 1px solid #f1f5f9;
  padding-left: 0 !important;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
body.blog article.type-post:hover,
body.archive article.type-post:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -10px rgba(15, 23, 42, 0.08);
  border-color: rgba(253, 70, 33, 0.2);
}
body.blog article.type-post .inner-post-wrap,
body.archive article.type-post .inner-post-wrap {
  display: flex;
  align-items: stretch;
}
@media (max-width: 767px) {
  body.blog article.type-post .inner-post-wrap,
  body.archive article.type-post .inner-post-wrap {
    flex-direction: column;
  }
}
body.blog article.type-post .post-thumbnail,
body.archive article.type-post .post-thumbnail {
  flex: 0 0 42%;
  max-width: 42%;
  min-height: 240px;
  overflow: hidden;
}
@media (max-width: 767px) {
  body.blog article.type-post .post-thumbnail,
  body.archive article.type-post .post-thumbnail {
    max-width: 100%;
    height: 220px;
    position: relative;
  }
}
body.blog article.type-post .post-thumbnail a,
body.archive article.type-post .post-thumbnail a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0;
  max-width: 100%;
}
body.blog article.type-post .post-thumbnail a:hover img,
body.archive article.type-post .post-thumbnail a:hover img {
  transform: scale(1.06);
}
body.blog article.type-post .post-thumbnail img,
body.archive article.type-post .post-thumbnail img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: left center;
  display: block;
  transform: scale(1);
  transition: transform 0.5s ease;
}
body.blog article.type-post .post-detail,
body.archive article.type-post .post-detail {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767px) {
  body.blog article.type-post .post-detail,
  body.archive article.type-post .post-detail {
    padding: 0.5rem;
  }
}
body.blog article.type-post .post-categories,
body.archive article.type-post .post-categories {
  margin-bottom: 0.75rem;
}
body.blog article.type-post .post-categories li::after,
body.archive article.type-post .post-categories li::after {
  display: none;
}
body.blog article.type-post .post-categories a,
body.archive article.type-post .post-categories a {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fd4621;
  background-color: rgba(253, 70, 33, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  display: inline-flex;
}
body.blog article.type-post .post-categories a:hover,
body.archive article.type-post .post-categories a:hover {
  background-color: #fd4621;
  color: #ffffff;
}
body.blog article.type-post .entry-title,
body.archive article.type-post .entry-title {
  margin-top: 0.75rem;
  margin-bottom: 0;
}
body.blog article.type-post .entry-title a,
body.archive article.type-post .entry-title a {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.4;
  letter-spacing: -0.02em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
body.blog article.type-post .entry-title a:hover,
body.archive article.type-post .entry-title a:hover {
  color: #fd4621;
}
@media (max-width: 767px) {
  body.blog article.type-post .entry-title a,
  body.archive article.type-post .entry-title a {
    font-size: 1.125rem;
  }
}
body.blog article.type-post .post-excerpt,
body.archive article.type-post .post-excerpt {
  margin-top: 0.75rem;
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.7;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
body.blog article.type-post .btn-readmore,
body.archive article.type-post .btn-readmore {
  margin-top: 1.25rem;
}
body.blog article.type-post .btn-readmore a,
body.archive article.type-post .btn-readmore a {
  display: inline-flex !important;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fd4621 !important;
  border-bottom: none !important;
  text-decoration: none;
  transition: gap 0.2s ease;
}
body.blog article.type-post .btn-readmore a::after,
body.archive article.type-post .btn-readmore a::after {
  content: "→";
  color: #fd4621;
  transition: transform 0.2s ease;
}
body.blog article.type-post .btn-readmore a:hover,
body.archive article.type-post .btn-readmore a:hover {
  gap: 0.625rem;
}
body.blog article.type-post .btn-readmore a:hover::after,
body.archive article.type-post .btn-readmore a:hover::after {
  transform: translateX(3px);
}
body.blog article.type-post .btn-readmore a svg,
body.archive article.type-post .btn-readmore a svg {
  display: none !important;
}
body.blog article.type-post:not(:has(.post-thumbnail)) .inner-post-wrap,
body.archive article.type-post:not(:has(.post-thumbnail)) .inner-post-wrap {
  flex-direction: column;
}
body.blog article.type-post:not(:has(.post-thumbnail)) .post-detail,
body.archive article.type-post:not(:has(.post-thumbnail)) .post-detail {
  padding: 2rem;
}
body.blog #secondary,
body.archive #secondary {
  padding-left: 2rem;
}
@media (max-width: 992px) {
  body.blog #secondary,
  body.archive #secondary {
    padding-left: 15px;
    padding-top: 2rem;
  }
}
body.blog #secondary .inner-sidebar,
body.archive #secondary .inner-sidebar {
  position: sticky;
  top: 5.5rem;
}
body.blog .widget,
body.archive .widget {
  background-color: #ffffff;
  border-radius: 1.25rem;
  border: 1px solid #f1f5f9;
  padding: 1.5rem;
}
body.blog .widget + .widget,
body.archive .widget + .widget {
  margin-top: 1.5rem;
}
body.blog .widget .widget-title,
body.blog .widget .wp-block-heading,
body.archive .widget .widget-title,
body.archive .widget .wp-block-heading {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #f1f5f9;
}
body.blog .widget ul li,
body.archive .widget ul li {
  padding: 0.375rem 0;
  border-bottom: 1px solid #f8fafc;
}
body.blog .widget ul li:last-child,
body.archive .widget ul li:last-child {
  border-bottom: none;
}
body.blog .widget a,
body.archive .widget a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #334155;
  transition: color 0.2s;
}
body.blog .widget a:hover,
body.archive .widget a:hover {
  color: #fd4621;
}
body.blog .widget_recent_comments a,
body.archive .widget_recent_comments a {
  font-size: 0.875rem;
}
body.blog .togo-pagination,
body.blog .navigation.pagination,
body.archive .togo-pagination,
body.archive .navigation.pagination {
  margin-top: 2.5rem;
}

.wp-block-search {
  margin-bottom: 0 !important;
}

body.blog .togo-posts-wrapper.layout-grid,
body.archive .togo-posts-wrapper.layout-grid {
  row-gap: 1.5rem;
}
body.blog .togo-posts-wrapper.layout-grid article.type-post,
body.archive .togo-posts-wrapper.layout-grid article.type-post {
  padding-left: 15px !important;
  padding-right: 15px !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
  box-shadow: none !important;
}
body.blog .togo-posts-wrapper.layout-grid article.type-post:hover,
body.archive .togo-posts-wrapper.layout-grid article.type-post:hover {
  transform: none !important;
  box-shadow: none !important;
  border-color: transparent !important;
}
body.blog .togo-posts-wrapper.layout-grid article.type-post .inner-post-wrap,
body.archive .togo-posts-wrapper.layout-grid article.type-post .inner-post-wrap {
  flex-direction: column !important;
  align-items: stretch;
  background-color: #ffffff;
  border-radius: 1.5rem;
  border: 1px solid #f1f5f9;
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
body.blog .togo-posts-wrapper.layout-grid article.type-post .inner-post-wrap:hover,
body.archive .togo-posts-wrapper.layout-grid article.type-post .inner-post-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -10px rgba(15, 23, 42, 0.08);
  border-color: rgba(253, 70, 33, 0.2);
}
body.blog .togo-posts-wrapper.layout-grid article.type-post .post-thumbnail,
body.archive .togo-posts-wrapper.layout-grid article.type-post .post-thumbnail {
  flex: none !important;
  max-width: 100% !important;
  width: 100%;
  min-height: unset;
  height: auto;
  aspect-ratio: 16/9;
}
body.blog .togo-posts-wrapper.layout-grid article.type-post .post-thumbnail a,
body.archive .togo-posts-wrapper.layout-grid article.type-post .post-thumbnail a {
  display: block;
  height: 100%;
}
body.blog .togo-posts-wrapper.layout-grid article.type-post .post-thumbnail img,
body.archive .togo-posts-wrapper.layout-grid article.type-post .post-thumbnail img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center center;
}
body.blog .togo-posts-wrapper.layout-grid article.type-post .post-detail,
body.archive .togo-posts-wrapper.layout-grid article.type-post .post-detail {
  padding: 1.25rem 1.5rem 1.5rem;
  justify-content: flex-start;
}
@media (max-width: 767px) {
  body.blog .togo-posts-wrapper.layout-grid,
  body.archive .togo-posts-wrapper.layout-grid {
    margin-left: 0;
    margin-right: 0;
  }
  body.blog .togo-posts-wrapper.layout-grid article.type-post,
  body.archive .togo-posts-wrapper.layout-grid article.type-post {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  body.blog .togo-posts-wrapper.layout-grid article.type-post .post-detail,
  body.archive .togo-posts-wrapper.layout-grid article.type-post .post-detail {
    padding: 1rem 1.25rem 1.25rem;
  }
}

body.single-post .site-content {
  background-color: #f8fafc;
  padding-top: 8rem;
  padding-bottom: 5rem;
}
@media (max-width: 767px) {
  body.single-post .site-content {
    padding-top: 5rem;
    padding-bottom: 3rem;
  }
}
body.single-post .site-content .entry-title {
  font-weight: 500;
}
body.single-post #primary.content-area {
  background-color: #ffffff;
  padding: 3rem;
  border-radius: 2rem;
  border: 1px solid #f1f5f9;
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.04);
}
@media (max-width: 767px) {
  body.single-post #primary.content-area {
    padding: 1.5rem;
    border-radius: 1.5rem;
  }
}
body.single-post .entry-meta {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
body.single-post .entry-meta .post-categories {
  margin: 0;
}
body.single-post .entry-meta .post-categories li::after {
  display: none;
}
body.single-post .entry-meta .post-categories a {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fd4621;
  background-color: rgba(253, 70, 33, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}
body.single-post .entry-meta .post-categories a:hover {
  background-color: #fd4621;
  color: #ffffff;
}
body.single-post .entry-meta .entry-date, body.single-post .entry-meta .entry-author {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
body.single-post .entry-title {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}
@media (max-width: 767px) {
  body.single-post .entry-title {
    font-size: 1.75rem;
  }
}
body.single-post .entry-thumbnail {
  margin-bottom: 2.5rem;
  border-radius: 1.5rem;
  overflow: hidden;
  line-height: 0;
}
body.single-post .entry-thumbnail img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 1.5rem;
}
body.single-post .entry-content {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #475569;
}
body.single-post .entry-content p {
  margin-bottom: 1.5rem;
}
body.single-post .entry-content h2, body.single-post .entry-content h3, body.single-post .entry-content h4 {
  color: #0f172a;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}
body.single-post .entry-content h2 {
  font-size: 1.75rem;
}
body.single-post .entry-content h3 {
  font-size: 1.5rem;
}
body.single-post .entry-content ul, body.single-post .entry-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.25rem;
}
body.single-post .entry-content ul li, body.single-post .entry-content ol li {
  margin-bottom: 0.5rem;
}
body.single-post .entry-content blockquote {
  margin: 2.5rem 0;
  padding: 2rem;
  background-color: #f8fafc;
  border-left: 4px solid #fd4621;
  border-radius: 0 1rem 1rem 0;
  font-style: italic;
  font-size: 1.25rem;
  color: #1e293b;
}
body.single-post .entry-content blockquote p:last-child {
  margin-bottom: 0;
}
body.single-post .entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  margin: 2rem 0;
}
body.single-post #secondary {
  padding-left: 2rem;
}
@media (max-width: 992px) {
  body.single-post #secondary {
    padding-left: 15px;
    padding-top: 3rem;
  }
}
body.single-post #secondary .inner-sidebar {
  position: sticky;
  top: 5.5rem;
}
body.single-post .widget {
  background-color: #ffffff;
  border-radius: 1.25rem;
  border: 1px solid #f1f5f9;
  padding: 1.5rem;
  box-shadow: 0 4px 20px -10px rgba(15, 23, 42, 0.04);
}
body.single-post .widget + .widget {
  margin-top: 1.5rem;
}
body.single-post .widget .widget-title,
body.single-post .widget .wp-block-heading {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #f8fafc;
}
body.single-post .widget ul li {
  padding: 0.375rem 0;
  border-bottom: 1px solid #f8fafc;
}
body.single-post .widget ul li:last-child {
  border-bottom: none;
}
body.single-post .widget a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #334155;
}
body.single-post .widget a:hover {
  color: #fd4621;
}

.custom-editor {
  background-color: #ffffff !important;
  border-radius: 1rem;
  box-shadow: 0px 40px 100px 0px rgba(15, 23, 42, 0.05), 0px 4px 20px 0px rgba(15, 23, 42, 0.02);
  border: 1px solid #f1f5f9;
  padding: 3.5rem 4rem !important;
}
@media (max-width: 991px) {
  .custom-editor {
    padding: 2.5rem 2.75rem !important;
  }
}
@media (max-width: 768px) {
  .custom-editor {
    padding: 1.75rem 1.5rem !important;
    border-radius: 0.75rem;
  }
}
.custom-editor {
  font-family: inherit;
  color: #475569;
  font-size: 1rem;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.custom-editor .elementor-widget-text-editor {
  color: #475569;
  font-size: 1rem;
  line-height: 1.85;
  font-family: inherit;
}
.custom-editor p {
  margin-bottom: 1.25rem;
  color: #475569;
}
.custom-editor p:first-child, .custom-editor p.meta-updated {
  font-size: 0.875rem;
  color: #94a3b8;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  border-left: 2px solid #fd4621;
  padding-left: 0.75rem;
}
.custom-editor h1, .custom-editor h2, .custom-editor h3, .custom-editor h4, .custom-editor h5, .custom-editor h6 {
  color: #0f172a;
  font-family: inherit;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  clear: both;
}
.custom-editor h1 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-top: 2.75rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .custom-editor h1 {
    font-size: 2rem;
    margin-top: 2rem;
  }
}
.custom-editor h2 {
  font-size: 2.25rem;
  line-height: 1.25;
  margin-top: 2.5rem;
  border-left: 3px solid #fd4621;
  padding-left: 1rem;
}
@media (max-width: 768px) {
  .custom-editor h2 {
    font-size: 1.75rem;
    margin-top: 1.875rem;
    padding-left: 0.75rem;
  }
}
.custom-editor h3 {
  font-size: 1.875rem;
  line-height: 1.3;
  margin-top: 2.25rem;
  color: #1e293b;
}
@media (max-width: 768px) {
  .custom-editor h3 {
    font-size: 1.5rem;
    margin-top: 1.625rem;
  }
}
.custom-editor h4 {
  font-size: 1.625rem;
  line-height: 1.35;
  margin-top: 1.875rem;
  color: #1e293b;
}
@media (max-width: 768px) {
  .custom-editor h4 {
    font-size: 1.25rem;
    margin-top: 1.375rem;
  }
}
.custom-editor h5 {
  font-size: 1.375rem;
  line-height: 1.4;
  margin-top: 1.5rem;
  color: #334155;
}
@media (max-width: 768px) {
  .custom-editor h5 {
    font-size: 1.125rem;
  }
}
.custom-editor h6 {
  font-size: 1.0625rem;
  line-height: 1.5;
  margin-top: 1.25rem;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .custom-editor h6 {
    font-size: 0.9375rem;
  }
}
.custom-editor strong, .custom-editor b {
  color: #0f172a;
  font-weight: 600;
}
.custom-editor hr {
  border: 0;
  height: 1px;
  background: linear-gradient(to right, #e2e8f0, transparent);
  margin: 2.5rem 0;
}
@media (max-width: 768px) {
  .custom-editor hr {
    margin: 1.75rem 0;
  }
}
.custom-editor a {
  color: #fd4621;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px dashed rgba(253, 70, 33, 0.2);
  transition: all 0.3s ease;
}
.custom-editor a:hover {
  color: #e63d1b;
  border-bottom: 1px solid #fd4621;
}
.custom-editor ul, .custom-editor ol {
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}
.custom-editor ul li, .custom-editor ol li {
  margin-bottom: 1em;
  color: #475569;
}
.custom-editor ul li strong, .custom-editor ol li strong {
  color: #0f172a;
}
.custom-editor ul {
  list-style: none;
}
.custom-editor ul li {
  position: relative;
  padding-left: 1rem;
}
.custom-editor ul li::before {
  content: "•";
  color: #fd4621;
  font-weight: bold;
  font-size: 1.125rem;
  position: absolute;
  left: 0;
  top: -0.125rem;
  line-height: 1;
}
.custom-editor ol {
  list-style-type: decimal;
}
.custom-editor ol li {
  padding-left: 0.25rem;
}
.custom-editor ol li::marker {
  color: #fd4621;
  font-weight: 600;
}
.custom-editor blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  background-color: #f8fafc;
  border-left: 4px solid #fd4621;
  border-radius: 0 0.5rem 0.5rem 0;
  color: #334155;
  font-style: italic;
}
.custom-editor blockquote p:last-child {
  margin-bottom: 0;
}

.togo-builder-reset.e-con-full, .togo-builder-reset.e-con > .e-con-inner,
.togo-builder-reset .e-con-full,
.togo-builder-reset .e-con > .e-con-inner {
  padding-block-start: 0 !important;
  padding-block-end: 0 !important;
}
.togo-builder-reset.e-con,
.togo-builder-reset .e-con {
  padding-inline-start: 0 !important;
  padding-inline-end: 0 !important;
}

/*# sourceMappingURL=togo-landingpage.sass.css.map */
*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

/*
! tailwindcss v3.4.19 | MIT License | https://tailwindcss.com
*/

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box;
  /* 1 */
  border-width: 0;
  /* 2 */
  border-style: solid;
  /* 2 */
  border-color: #e5e7eb;
  /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  -o-tab-size: 4;
     tab-size: 4;
  /* 3 */
  font-family: Inter, sans-serif;
  /* 4 */
  font-feature-settings: normal;
  /* 5 */
  font-variation-settings: normal;
  /* 6 */
  -webkit-tap-highlight-color: transparent;
  /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0;
  /* 1 */
  line-height: inherit;
  /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0;
  /* 1 */
  color: inherit;
  /* 2 */
  border-top-width: 1px;
  /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

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

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  /* 1 */
  font-feature-settings: normal;
  /* 2 */
  font-variation-settings: normal;
  /* 3 */
  font-size: 1em;
  /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0;
  /* 1 */
  border-color: inherit;
  /* 2 */
  border-collapse: collapse;
  /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-feature-settings: inherit;
  /* 1 */
  font-variation-settings: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  font-weight: inherit;
  /* 1 */
  line-height: inherit;
  /* 1 */
  letter-spacing: inherit;
  /* 1 */
  color: inherit;
  /* 1 */
  margin: 0;
  /* 2 */
  padding: 0;
  /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button;
  /* 1 */
  background-color: transparent;
  /* 2 */
  background-image: none;
  /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/

dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  /* 1 */
  vertical-align: middle;
  /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}

.\!container {
  width: 100% !important;
}

.container {
  width: 100%;
}

@media (min-width: 640px) {
  .\!container {
    max-width: 640px !important;
  }

  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .\!container {
    max-width: 768px !important;
  }

  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .\!container {
    max-width: 1024px !important;
  }

  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .\!container {
    max-width: 1280px !important;
  }

  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .\!container {
    max-width: 1536px !important;
  }

  .container {
    max-width: 1536px;
  }
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.block {
  display: block;
}

.inline {
  display: inline;
}

.flex {
  display: flex;
}

.hidden {
  display: none;
}

.h-14 {
  height: 3.5rem;
}

.h-3 {
  height: 0.75rem;
}

.w-14 {
  width: 3.5rem;
}

.w-3 {
  width: 0.75rem;
}

.max-w-md {
  max-width: 28rem;
}

.translate-y-0 {
  --tw-translate-y: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-y-10 {
  --tw-translate-y: 2.5rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-y-20 {
  --tw-translate-y: 5rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

@keyframes pulse {
  50% {
    opacity: .5;
  }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

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

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-12 {
  gap: 3rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.space-y-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}

.rounded-2xl {
  border-radius: 16px;
}

.rounded-full {
  border-radius: 9999px;
}

.border {
  border-width: 1px;
}

.border-t {
  border-top-width: 1px;
}

.border-white\/10 {
  border-color: rgb(255 255 255 / 0.1);
}

.border-white\/5 {
  border-color: rgb(255 255 255 / 0.05);
}

.bg-primary {
  --tw-bg-opacity: 1;
  background-color: rgb(253 70 33 / var(--tw-bg-opacity, 1));
}

.bg-white\/5 {
  background-color: rgb(255 255 255 / 0.05);
}

.pt-16 {
  padding-top: 4rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.font-medium {
  font-weight: 500;
}

.font-normal {
  font-weight: 400;
}

.uppercase {
  text-transform: uppercase;
}

.italic {
  font-style: italic;
}

.leading-relaxed {
  line-height: 1.625;
}

.tracking-tighter {
  letter-spacing: -0.05em;
}

.tracking-widest {
  letter-spacing: 0.1em;
}

.text-primary {
  --tw-text-opacity: 1;
  color: rgb(253 70 33 / var(--tw-text-opacity, 1));
}

.text-slate-400 {
  --tw-text-opacity: 1;
  color: rgb(148 163 184 / var(--tw-text-opacity, 1));
}

.text-slate-500 {
  --tw-text-opacity: 1;
  color: rgb(100 116 139 / var(--tw-text-opacity, 1));
}

.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.text-white\/70 {
  color: rgb(255 255 255 / 0.7);
}

.opacity-0 {
  opacity: 0;
}

.opacity-100 {
  opacity: 1;
}

.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-primary\/20 {
  --tw-shadow-color: rgb(253 70 33 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.delay-200 {
  transition-delay: 200ms;
}

.delay-300 {
  transition-delay: 300ms;
}

.delay-500 {
  transition-delay: 500ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.ai-prompt-box {
  border: 1px solid #E5E7EB;
  transition: all 0.2s ease;
}

.ai-prompt-box:focus-within {
  border-color: #fd4621;
  box-shadow: 0 0 0 4px rgba(253, 70, 33, 0.1);
}

.hover\:border-primary:hover {
  --tw-border-opacity: 1;
  border-color: rgb(253 70 33 / var(--tw-border-opacity, 1));
}

.hover\:bg-primary:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(253 70 33 / var(--tw-bg-opacity, 1));
}

.hover\:text-primary:hover {
  --tw-text-opacity: 1;
  color: rgb(253 70 33 / var(--tw-text-opacity, 1));
}

.hover\:text-white:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

@media (min-width: 768px) {
  .md\:block {
    display: block;
  }

  .md\:flex-row {
    flex-direction: row;
  }
}
