body.menu-open {
  position: fixed;
  width: 100%;
  overflow: hidden
}
.download-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(5px);
  animation: .3s ease-out fadeIn
}
.download-popup-modal {
  background: #fff;
  border-radius: 16px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  animation: .4s ease-out slideInUp;
  position: relative
}
.popup-header {
  padding: 2rem 2rem 1rem;
  text-align: center;
  position: relative;
  border-bottom: 1px solid #e1e5e9
}
.popup-header h3 {
  color: #2c3e50;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: .5rem;
  padding-right: 2rem
}
.popup-header p {
  color: #6c757d;
  font-size: 1rem;
  margin: 0;
  padding-right: 2rem
}
.popup-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: 0 0;
  border: none;
  color: #6c757d;
  cursor: pointer;
  padding: .5rem;
  border-radius: 50%;
  transition: .3s;
  display: flex;
  align-items: center;
  justify-content: center
}
.popup-close-btn:hover {
  background: #f8f9fa;
  color: #2c3e50;
  transform: rotate(90deg)
}
.popup-content {
  padding: 1.5rem 2rem 2rem
}
.popup-content .forminator-form {
  max-width: 100%
}
.popup-content .forminator-field {
  margin-bottom: 1.5rem
}
.popup-content .forminator-label {
  display: block;
  font-weight: 500;
  color: #2c3e50;
  margin-bottom: .5rem;
  font-size: .95rem
}
.popup-content .forminator-input,
.popup-content .forminator-select,
.popup-content .forminator-textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color .3s,box-shadow .3s;
  background: #fff
}
.popup-content .forminator-input:focus,
.popup-content .forminator-select:focus,
.popup-content .forminator-textarea:focus {
  outline: 0;
  border-color: #007cba;
  box-shadow: 0 0 0 3px rgba(0,124,186,.1)
}
.popup-content .forminator-button {
  background: linear-gradient(135deg,#007cba 0,#005a87 100%);
  color: #fff;
  border: none;
  padding: .875rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: .3s;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: .5px
}
.popup-content .forminator-button:hover {
  background: linear-gradient(135deg,#005a87 0,#004066 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,124,186,.3)
}
.popup-content .forminator-button:active {
  transform: translateY(0)
}
.download-success-message {
  background: linear-gradient(135deg,#28a745 0,#20c997 100%);
  color: #fff;
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2rem;
  text-align: center;
  animation: .5s ease-out fadeInUp;
  box-shadow: 0 10px 30px rgba(40,167,69,.2)
}
.download-success-message .success-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: .5rem;
  color: #fff
}
.download-success-message .success-content p {
  font-size: 1rem;
  margin: 0;
  opacity: .9
}
@keyframes fadeIn {
  from {
    opacity: 0
  }
  to {
    opacity: 1
  }
}
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(.95)
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1)
  }
}
@media (max-width:768px) {
  .download-popup-modal {
    width: 95%;
    max-width: none;
    margin: 1rem
  }
  .popup-header {
    padding: 1.5rem 1.5rem 1rem
  }
  .popup-header h3 {
    font-size: 1.25rem;
    padding-right: 3rem
  }
  .popup-header p {
    font-size: .9rem;
    padding-right: 3rem
  }
  .popup-close-btn {
    top: 1rem;
    right: 1rem
  }
  .popup-content {
    padding: 1rem 1.5rem 1.5rem
  }
  .download-success-message {
    padding: 1.5rem;
    margin: 1rem
  }
  .download-success-message .success-content h3 {
    font-size: 1.25rem
  }
  .download-success-message .success-content p {
    font-size: .9rem
  }
}
@keyframes slideInFromLeft {
  from {
    transform: translateX(-100%);
    opacity: 0
  }
  to {
    transform: translateX(0);
    opacity: 1
  }
}
@keyframes slideOutToLeft {
  from {
    transform: translateX(0);
    opacity: 1
  }
  to {
    transform: translateX(-100%);
    opacity: 0
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px)
  }
  to {
    opacity: 1;
    transform: translateY(0)
  }
}
@media (min-width:769px) {
  .main-navigation {
    display: flex!important;
    align-items: center
  }
  .nav-menu {
    display: flex!important;
    flex-direction: row;
    gap: 2rem
  }
  .mobile-menu-close,
  .mobile-menu-overlay,
  .mobile-menu-toggle,
  .mobile-navigation {
    display: none!important
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}
body {
  font-family: -apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5
}
.download-cta-content,
.fade-in-up,
.feature-card,
.hero-content,
.hero-image,
.screenshot-card,
.section-title {
  opacity: 1!important;
  transform: translateY(0)!important
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem
}
article h1,
aside h1,
h1,
nav h1,
section h1 {
  font-size: 2.5rem;
  margin-block: 0.67em
}
h2 {
  font-size: 2rem
}
h3 {
  font-size: 1.5rem
}
h4 {
  font-size: 1.25rem
}
p {
  margin-bottom: 1rem;
  font-size: 1rem
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px
}
.site-header {
  background: linear-gradient(135deg,#1a1a1a 0,#2d2d2d 100%);
  color: #fff;
  padding: 1rem 0;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,.1);
  position: relative
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative
}
.site-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff6b35;
  text-decoration: none
}
.site-logo:hover {
  color: #ff8c42
}
.main-navigation {
  display: none;
  align-items: center
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
  align-items: center
}
.nav-menu li {
  list-style: none;
  position: relative
}
.nav-menu .main-menu-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: .75rem 1.25rem;
  border-radius: 6px;
  transition: .3s;
  display: flex;
  align-items: center;
  gap: .5rem;
  position: relative;
  overflow: hidden
}
.nav-menu .main-menu-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,transparent,rgba(255,107,53,.1),transparent);
  transition: left .5s
}
.nav-menu .main-menu-link:hover::before {
  left: 100%
}
.nav-menu .main-menu-link:hover {
  background: rgba(255,107,53,.15);
  color: #ff6b35;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255,107,53,.2)
}
.dropdown-arrow {
  font-size: .8rem;
  transition: transform .3s
}
.nav-menu .has-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg)
}
.nav-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  box-shadow: 0 8px 25px rgba(0,0,0,.15);
  border-radius: 8px;
  padding: .5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: .3s;
  z-index: 1000;
  border: 1px solid rgba(0,0,0,.05)
}
.nav-menu .has-dropdown:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}
.nav-menu .sub-menu li {
  margin: 0
}
.nav-menu .sub-menu-link {
  color: #333;
  padding: .75rem 1.5rem;
  display: block;
  font-weight: 500;
  transition: .3s;
  border-radius: 4px;
  margin: 0 .5rem
}
.nav-menu .sub-menu-link:hover {
  background: rgba(255,107,53,.1);
  color: #ff6b35;
  transform: translateX(5px)
}
.nav-menu .current-menu-item .main-menu-link,
.nav-menu .current-page-ancestor .main-menu-link {
  background: rgba(255,107,53,.2);
  color: #ff6b35
}
.fallback-menu {
  display: flex;
  gap: 1rem
}
.fallback-menu .main-menu-link {
  color: #fff;
  text-decoration: none;
  padding: .5rem 1rem;
  border-radius: 4px;
  transition: .3s
}
.fallback-menu .main-menu-link:hover {
  background: rgba(255,107,53,.15);
  color: #ff6b35
}
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  background: 0 0;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: .5rem;
  border-radius: 6px;
  transition: .3s;
  position: relative;
  z-index: 1002;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 4px
}
.mobile-menu-toggle:hover {
  background: rgba(255,255,255,.1);
  transform: scale(1.05)
}
.mobile-menu-toggle:focus {
  outline: #FF6B35 solid 2px;
  outline-offset: 2px
}
.hamburger-line {
  width: 24px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: .3s;
  transform-origin: center
}
.mobile-menu-toggle[aria-expanded=true] .hamburger-line:first-child {
  transform: rotate(45deg) translate(6px,6px)
}
.mobile-menu-toggle[aria-expanded=true] .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scale(0)
}
.mobile-menu-toggle[aria-expanded=true] .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px,-6px)
}
.mobile-navigation {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg,#1a1a1a 0,#2d2d2d 100%);
  z-index: 1001;
  transform: translateX(-100%);
  opacity: 0;
  transition: .4s cubic-bezier(.4, 0, .2, 1);
  box-sizing: border-box;
  overflow-y: auto;
  padding: 6rem 2rem 2rem
}
.mobile-navigation.nav-open {
  display: block;
  transform: translateX(0);
  opacity: 1
}
.mobile-menu-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  cursor: pointer;
  padding: .75rem;
  border-radius: 50%;
  transition: .3s;
  z-index: 1003;
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  backdrop-filter: blur(10px)
}
.mobile-menu-overlay.nav-open .mobile-menu-close {
  display: flex
}
.mobile-menu-close:hover {
  background: rgba(255,107,53,.2);
  border-color: rgba(255,107,53,.4);
  transform: scale(1.1)
}
.close-icon {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1
}
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg,#1a1a1a 0,#2d2d2d 100%);
  z-index: 1001;
  transform: translateX(-100%);
  opacity: 0;
  transition: .3s;
  box-sizing: border-box;
  overflow-y: auto;
  padding: 6rem 2rem 2rem
}
.mobile-menu-overlay.nav-open {
  display: block;
  transform: translateX(0);
  opacity: 1
}
.mobile-nav-menu {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: .5rem
}
.mobile-nav-menu li {
  margin: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: .4s;
  animation: .4s forwards slideInUp
}
.mobile-nav-menu.nav-open li {
  opacity: 1;
  transform: translateY(0)
}
.mobile-nav-menu li:first-child {
  animation-delay: .1s
}
.mobile-nav-menu li:nth-child(2) {
  animation-delay: .15s
}
.mobile-nav-menu li:nth-child(3) {
  animation-delay: .2s
}
.mobile-nav-menu li:nth-child(4) {
  animation-delay: .25s
}
.mobile-nav-menu li:nth-child(5) {
  animation-delay: .3s
}
.mobile-nav-menu li:nth-child(6) {
  animation-delay: .35s
}
.mobile-nav-menu .main-menu-link {
  color: #fff;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  font-size: 1.1rem;
  transition: .3s;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(10px)
}
.mobile-nav-menu .main-menu-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,transparent,rgba(255,107,53,.1),transparent);
  transition: left .5s
}
.mobile-nav-menu .main-menu-link:hover::before {
  left: 100%
}
.mobile-nav-menu .main-menu-link:hover {
  background: rgba(255,107,53,.15);
  color: #ff6b35;
  transform: translateX(8px);
  border-color: rgba(255,107,53,.3);
  box-shadow: 0 4px 15px rgba(255,107,53,.2)
}
.mobile-nav-menu .main-menu-link:active {
  background: rgba(255,107,53,.25);
  transform: translateX(4px)
}
.mobile-nav-menu .sub-menu {
  margin-top: .5rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(255,107,53,.3)
}
.mobile-nav-menu .sub-menu-link {
  color: #e0e0e0;
  padding: 1rem 1.25rem;
  display: block;
  font-weight: 400;
  font-size: 1rem;
  transition: .3s;
  border-radius: 8px;
  text-decoration: none;
  background: rgba(255,255,255,.03);
  margin-bottom: .25rem
}
.mobile-nav-menu .sub-menu-link:hover {
  background: rgba(255,107,53,.1);
  color: #ff6b35;
  transform: translateX(5px)
}
.mobile-nav-menu .dropdown-arrow {
  font-size: .9rem;
  transition: transform .3s
}
.mobile-nav-menu .has-dropdown.open .dropdown-arrow {
  transform: rotate(180deg)
}
.mobile-nav-menu .current-menu-item .main-menu-link,
.mobile-nav-menu .current-page-ancestor .main-menu-link {
  background: rgba(255,107,53,.2);
  color: #ff6b35;
  border-color: rgba(255,107,53,.4)
}
.hero-section {
  background: linear-gradient(135deg,#1a1a1a 0,#2d2d2d 100%);
  color: #fff;
  padding: 4rem 0;
  contain: layout style paint
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto
}
.hero-content {
  text-align: left
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #ff6b35
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 500px
}
.hero-cta {
  margin-top: 2rem
}
.hero-cta .btn {
  font-size: 1.1rem;
  padding: 1rem 1.5rem
}
.hero-image {
  text-align: center
}
.hero-image img {
  max-width: 100%;
  max-height: 632px;
  height: 100%;
  margin: auto;
  aspect-ratio: 1/1;
  object-fit: contain
}
@media (max-width:768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center
  }
  .hero-content {
    text-align: center
  }
  .hero-content h1 {
    font-size: 2.5rem
  }
  .hero-content p {
    font-size: 1.1rem;
    margin-left: auto;
    margin-right: auto
  }
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap
}
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: .3s;
  border: none;
  cursor: pointer;
  font-size: 1rem
}
.btn-primary {
  background: linear-gradient(135deg,#ff6b35 0,#ff8c42 100%);
  color: #fff
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255,107,53,.3)
}
.btn-secondary {
  background: 0 0;
  color: #fff;
  border: 2px solid #fff
}
.btn-secondary:hover {
  background: #fff;
  color: #1a1a1a
}
.features-section {
  padding: 4rem 0;
  background: #fff
}
.section-title {
  text-align: center;
  margin-bottom: 3rem
}
.section-title h2 {
  color: #1a1a1a;
  font-size: 2.5rem
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap: 2rem
}
.feature-card {
  background: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,.1)
}
.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem
}
.screenshots-section {
  padding: 4rem 0;
  background: #f8f9fa
}
.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 2.5rem;
  margin-top: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto
}
.screenshot-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,.15);
  transition: .3s;
  border: 1px solid rgba(0,0,0,.05);
  position: relative
}
.screenshot-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,.2)
}
.screenshot-icon {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg,#ff6b35 0,#ff8c42 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 4rem;
  position: relative;
  overflow: hidden
}
.screenshot-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg,rgba(255,255,255,.1) 0,transparent 50%,rgba(255,255,255,.1) 100%);
  pointer-events: none
}
.screenshot-icon i {
  position: relative;
  z-index: 2;
  transition: transform .3s
}
.screenshot-card:hover .screenshot-icon i {
  transform: scale(1.1)
}
.screenshot-content {
  padding: 2rem;
  background: #fff;
  position: relative
}
.screenshot-content h3 {
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3
}
.screenshot-content p {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 0
}
.testimonials-section {
  padding: 4rem 0;
  background: #fff
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap: 2rem;
  margin-top: 3rem
}
.testimonial-card {
  background: #f8f9fa;
  border-left: 4px solid #ff6b35
}
.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: #333
}
.testimonial-author {
  font-weight: 600;
  color: #1a1a1a
}
.site-footer {
  background: #1a1a1a;
  color: #fff;
  padding: 3rem 0 1rem
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 2rem;
  margin-bottom: 2rem
}
.footer-section h3 {
  color: #ff6b35;
  margin-bottom: 1rem
}
.footer-section ul {
  list-style: none
}
.footer-section ul li {
  margin-bottom: .5rem
}
.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: color .3s
}
.footer-section a:hover {
  color: #ff6b35
}
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 1rem;
  text-align: center;
  color: #ccc
}
.page-content {
  padding: 2rem 0
}
.page-header {
  background: linear-gradient(135deg,#1a1a1a 0,#2d2d2d 100%);
  color: #fff;
  padding: 3rem 0;
  text-align: center
}
.page-header h1 {
  color: #ff6b35
}
.custom-contact-form {
  background: #fff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  max-width: 600px;
  margin: 0 auto;
  position: relative
}
.custom-contact-form::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg,rgba(255,107,53,.1),rgba(255,140,66,.1));
  border-radius: 14px;
  z-index: -1
}
.custom-contact-form .form-group {
  margin-bottom: 1.8rem
}
.custom-contact-form .form-group label {
  display: block;
  margin-bottom: .6rem;
  font-weight: 600;
  color: #333;
  font-size: .95rem;
  letter-spacing: .01em
}
.custom-contact-form .form-group input,
.custom-contact-form .form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  transition: .3s;
  resize: vertical;
  box-shadow: inset 0 1px 3px rgba(0,0,0,.05)
}
.custom-contact-form .form-group input:focus,
.custom-contact-form .form-group textarea:focus {
  outline: 0;
  border-color: #ff6b35;
  box-shadow: 0 0 0 3px rgba(255,107,53,.1),inset 0 1px 3px rgba(0,0,0,.05);
  transform: translateY(-1px)
}
.custom-contact-form .form-group textarea {
  min-height: 120px;
  resize: vertical
}
.custom-contact-form .send-message-btn {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg,#ff6b35 0,#ff8c42 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: .3s;
  margin-top: 1rem;
  position: relative;
  overflow: hidden
}
.custom-contact-form .send-message-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,.2),transparent);
  transition: left .5s
}
.custom-contact-form .send-message-btn:hover::before {
  left: 100%
}
.custom-contact-form .send-message-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,107,53,.3)
}
.custom-contact-form .send-message-btn:active {
  transform: translateY(0)
}
.custom-contact-form .form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  display: none;
  animation: .3s slideInDown
}
.custom-contact-form .form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: block
}
.custom-contact-form .form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  display: block
}
.contact-form {
  background: #f8f9fa;
  padding: 3rem 1rem;
  border-radius: 15px;
  margin: 2rem 0;
  position: relative
}
@media (max-width:768px) {
  .custom-contact-form {
    padding: 2rem;
    margin: 0 1rem
  }
  .contact-form {
    padding: 2rem .5rem
  }
  .custom-contact-form .send-message-btn {
    padding: 1rem 1.5rem;
    font-size: .95rem
  }
}
.beta-signup-section {
  padding: 6rem 0;
  background: linear-gradient(135deg,#ff6b35 0,#ff8c42 100%);
  color: #fff;
  position: relative;
  overflow: hidden
}
.beta-signup-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none
}
.beta-signup-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2
}
.beta-signup-content h2 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 3rem;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0,0,0,.1);
  letter-spacing: -.02em
}
.beta-signup-content p {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  opacity: .95;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400
}
.signup-input-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: center
}
.signup-input-group input[type=email] {
  flex: 1;
  min-width: 300px;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  background: #fff;
  color: #1a1a1a;
  outline: 0;
  transition: .3s
}
.signup-input-group input[type=email]:focus {
  box-shadow: 0 0 0 3px rgba(255,255,255,.3)
}
.signup-input-group .btn {
  padding: 1rem 2rem;
  border-radius: 50px;
  background: #1a1a1a;
  color: #fff;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: .3s;
  white-space: nowrap
}
.signup-input-group .btn:hover {
  background: #333;
  transform: translateY(-2px)
}
.signup-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 1rem;
  text-align: left
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem;
  background: rgba(255,255,255,.1);
  border-radius: 10px;
  font-size: .9rem
}
.benefit-item svg {
  color: gold;
  flex-shrink: 0
}
.beta-signup-form .form-message {
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 8px;
  font-weight: 500
}
.beta-signup-form .form-message.success {
  background: rgba(76,175,80,.2);
  color: #4caf50;
  border: 1px solid rgba(76,175,80,.3)
}
.beta-signup-form .form-message.error {
  background: rgba(244,67,54,.2);
  color: #f44336;
  border: 1px solid rgba(244,67,54,.3)
}
.beta-signup-form {
  background: rgba(255,255,255,.15);
  padding: 3rem;
  border-radius: 20px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: 0 20px 40px rgba(0,0,0,.1);
  max-width: 550px;
  margin: 0 auto;
  position: relative;
  z-index: 2
}
.forminator-ui.forminator-custom-form {
  font-family: -apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,sans-serif;
  background: 0 0;
  border: none;
  box-shadow: none;
  padding: 0;
  margin: 0
}
.forminator-ui.forminator-custom-form .forminator-row {
  margin-bottom: 2rem;
  position: relative
}
.forminator-ui.forminator-custom-form .forminator-row-last {
  margin-bottom: 0
}
.forminator-ui.forminator-custom-form .forminator-field {
  position: relative;
  margin-bottom: 0
}
.forminator-ui.forminator-custom-form .forminator-label {
  display: block;
  margin-bottom: .75rem;
  font-weight: 600;
  color: #e67e22;
  font-size: 1rem;
  text-align: left;
  letter-spacing: .01em;
  font-family: inherit;
  transition: .3s
}
.forminator-ui.forminator-custom-form .forminator-required {
  color: #e74c3c;
  font-weight: 700;
  margin-left: 2px
}
.forminator-ui.forminator-custom-form .forminator-input {
  width: 100%;
  padding: 1.25rem 1.5rem;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 12px;
  font-size: 1rem;
  background: rgba(255,255,255,.98);
  color: #2c3e50;
  outline: 0;
  transition: .3s cubic-bezier(.4, 0, .2, 1);
  font-family: inherit;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  position: relative
}
.forminator-ui.forminator-custom-form .forminator-input:focus {
  border-color: #ff6b35;
  box-shadow: 0 0 0 4px rgba(255,107,53,.15);
  background: #fff;
  transform: translateY(-1px)
}
.forminator-ui.forminator-custom-form .forminator-input:hover {
  border-color: rgba(255,255,255,.6);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,.1)
}
.forminator-ui.forminator-custom-form .forminator-input::placeholder {
  color: #95a5a6;
  opacity: .8;
  font-weight: 400
}
.forminator-ui.forminator-custom-form .forminator-has_error .forminator-input {
  border-color: #e74c3c;
  background: rgba(255,255,255,.99);
  box-shadow: 0 0 0 4px rgba(231,76,60,.1);
  animation: .5s ease-in-out shake
}
@keyframes shake {
  0%,
  100% {
    transform: translateX(0)
  }
  25% {
    transform: translateX(-5px)
  }
  75% {
    transform: translateX(5px)
  }
}
.forminator-ui.forminator-custom-form .forminator-error-message {
  color: #e74c3c;
  font-size: .9rem;
  margin-top: .75rem;
  display: block;
  text-align: left;
  font-weight: 500;
  background: rgba(231,76,60,.1);
  padding: .75rem;
  border-radius: 8px;
  border-left: 3px solid #e74c3c;
  animation: .3s ease-out slideInDown
}
.forminator-ui.forminator-custom-form .forminator-button {
  width: 100%;
  padding: 1.5rem 2rem;
  border-radius: 15px;
  background-color: #000;
  color: #fff;
  border: none;
  font-weight: 700;
  font-size: 1.2rem;
  cursor: pointer;
  transition: .4s cubic-bezier(.4, 0, .2, 1);
  text-transform: none;
  font-family: inherit;
  margin-top: 1.5rem;
  letter-spacing: .02em;
  box-shadow: 0 8px 25px rgba(255,107,53,.4);
  position: relative;
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(0,0,0,.1)
}
.forminator-ui.forminator-custom-form .forminator-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,.3),transparent);
  transition: left .6s
}
.forminator-ui.forminator-custom-form .forminator-button:hover {
  background: #333;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 35px rgba(255,107,53,.5);
  letter-spacing: .03em
}
.forminator-ui.forminator-custom-form .forminator-button:hover::before {
  left: 100%
}
.forminator-ui.forminator-custom-form .forminator-button:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(-5px)
}
.forminator-ui.forminator-custom-form .forminator-button:active {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 6px 20px rgba(255,107,53,.4)
}
.forminator-ui.forminator-custom-form .forminator-response-message {
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  border-radius: 12px;
  font-weight: 600;
  text-align: center;
  font-size: 1rem;
  border: none;
  font-family: inherit
}
.forminator-ui.forminator-custom-form .forminator-response-message.forminator-success {
  background: linear-gradient(135deg,rgba(46,204,113,.15) 0,rgba(39,174,96,.15) 100%);
  color: #27ae60;
  box-shadow: 0 4px 15px rgba(46,204,113,.2);
  border-left: 4px solid #27ae60;
  animation: .5s ease-out formSuccess
}
.forminator-ui.forminator-custom-form .forminator-response-message.forminator-error {
  background: linear-gradient(135deg,rgba(231,76,60,.15) 0,rgba(192,57,43,.15) 100%);
  color: #e74c3c;
  box-shadow: 0 4px 15px rgba(231,76,60,.2);
  border-left: 4px solid #e74c3c
}
.forminator-ui.forminator-custom-form .forminator-field:focus-within .forminator-label {
  color: #ff6b35;
  transform: translateY(-2px);
  transition: .3s
}
.forminator-ui.forminator-custom-form .forminator-button:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
  background: linear-gradient(135deg,#95a5a6 0,#7f8c8d 100%)
}
.forminator-ui.forminator-custom-form .forminator-button:disabled:hover {
  transform: none;
  box-shadow: 0 8px 25px rgba(255,107,53,.4)
}
@keyframes formSuccess {
  0% {
    transform: scale(.95);
    opacity: 0
  }
  100% {
    transform: scale(1);
    opacity: 1
  }
}
.forminator-ui.forminator-custom-form .forminator-field:hover .forminator-input {
  border-color: rgba(255,255,255,.6);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,.1)
}
@media (max-width:768px) {
  .forminator-ui.forminator-custom-form .forminator-input {
    padding: 1rem 1.25rem;
    font-size: .95rem
  }
  .forminator-ui.forminator-custom-form .forminator-button {
    padding: 1.25rem 1.5rem;
    font-size: 1.1rem
  }
  .forminator-ui.forminator-custom-form .forminator-label {
    font-size: .95rem
  }
  .forminator-ui.forminator-custom-form .forminator-row {
    margin-bottom: 1.5rem
  }
  .forminator-ui.forminator-custom-form .forminator-button::after {
    right: 1rem;
    font-size: 1rem
  }
  .signup-input-group {
    flex-direction: column;
    align-items: center
  }
  .signup-input-group input[type=email] {
    min-width: 100%;
    max-width: 300px
  }
  .signup-input-group .btn {
    width: 100%;
    max-width: 300px
  }
  .signup-benefits {
    grid-template-columns: 1fr
  }
  .beta-signup-form {
    padding: 1.5rem
  }
}
.download-buttons-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap
}
.android-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  transition: .3s;
  box-shadow: 0 4px 15px rgba(255,107,53,.3);
  position: relative;
  overflow: hidden
}
.ios-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  transition: .3s;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg,#007aff 0,#0056cc 100%);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,122,255,.3)
}
.ios-download-btn:hover:not(.disabled) {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,122,255,.4)
}
.ios-download-btn.disabled {
  background: linear-gradient(135deg,#8e8e93 0,#6d6d70 100%);
  color: #aeaeb2;
  cursor: not-allowed;
  opacity: .7;
  width: 100%;
  box-shadow: 0 2px 8px rgba(142,142,147,.2);
  position: relative
}
.ios-download-btn.disabled:hover {
  transform: none;
  box-shadow: 0 2px 8px rgba(142,142,147,.2)
}
.coming-soon-badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg,#ff6b35 0,#ff8c42 100%);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: .4rem .8rem;
  border-radius: 15px;
  text-transform: uppercase;
  letter-spacing: .8px;
  box-shadow: 0 4px 12px rgba(255,107,53,.5);
  animation: 2s ease-in-out infinite pulse-badge;
  border: 2px solid #fff;
  z-index: 10;
  white-space: nowrap
}
@keyframes pulse-badge {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
    box-shadow: 0 4px 12px rgba(255,107,53,.5)
  }
  50% {
    transform: translateX(-50%) scale(1.08);
    box-shadow: 0 6px 16px rgba(255,107,53,.7)
  }
}
.android-download-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,.2),transparent);
  transition: left .5s
}
.android-download-btn:hover::before {
  left: 100%
}
.android-download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255,107,53,.4)
}
.download-note {
  font-size: .9rem;
  color: #666;
  margin-top: .5rem;
  text-align: center
}
.hero-subtitle {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #f0f0f0;
  max-width: 600px
}
.download-cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg,#1a1a1a 0,#2d2d2d 100%);
  color: #fff;
  position: relative;
  overflow: hidden
}
.download-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none
}
.download-cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2
}
.download-cta-content h2 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 2.8rem;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0,0,0,.1);
  letter-spacing: -.02em
}
.download-cta-content p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: .95;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400
}
.download-buttons {
  margin-bottom: 3rem
}
.app-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto
}
.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255,255,255,.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2)
}
.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #ff6b35;
  margin-bottom: .5rem
}
.stat-label {
  font-size: .9rem;
  opacity: .9;
  font-weight: 500
}
.faq-section {
  padding: 4rem 0;
  background: #f8f9fa
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap: 2rem;
  margin-top: 3rem
}
.faq-item {
  box-shadow: 0 5px 15px rgba(0,0,0,.1)
}
@media (max-width:768px) {
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem
  }
  .download-buttons-row {
    flex-direction: row;
    gap: .75rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center
  }
  .android-download-btn,
  .ios-download-btn {
    padding: 1rem 1.5rem;
    font-size: .95rem;
    flex: 1;
    min-width: 140px;
    max-width: 200px
  }
  .coming-soon-badge {
    font-size: .7rem;
    padding: .3rem .6rem;
    top: -18px
  }
  .download-cta-content h2 {
    font-size: 2.2rem
  }
  .download-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem
  }
  .app-stats {
    grid-template-columns: 1fr;
    gap: 1rem
  }
  .stat-item {
    padding: 1rem
  }
  .stat-number {
    font-size: 1.5rem
  }
  .faq-grid {
    grid-template-columns: 1fr
  }
  .faq-item {
    padding: 1.5rem
  }
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: .75rem
}
.footer-menu a {
  color: #ccc;
  text-decoration: none;
  font-size: .9rem;
  transition: color .3s;
  padding: .25rem 0
}
.footer-menu a:hover {
  color: #ff6b35
}
.main-site-link {
  padding: 2rem 0;
  background: #f8f9fa;
  text-align: center
}
.main-site-content {
  max-width: 600px;
  margin: 0 auto
}
.main-site-content p {
  font-size: 1rem;
  color: #666;
  margin: 0
}
.main-site-content a {
  color: #ff6b35;
  text-decoration: none;
  font-weight: 600;
  transition: color .3s
}
.main-site-content a:hover {
  color: #ff8c42;
  text-decoration: underline
}
.contact-info {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e0e0e0
}
.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 2rem;
  margin-top: 2rem
}
.contact-method {
  text-align: center;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 10px
}
.contact-method h4 {
  color: #ff6b35;
  margin-bottom: .5rem
}
.form-message {
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  font-weight: 500
}
.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb
}
.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb
}
.form-group input.error,
.form-group textarea.error {
  border-color: #dc3545
}
.error-message {
  color: #dc3545;
  font-size: .875rem;
  margin-top: .25rem;
  display: block
}
.privacy-policy {
  max-width: 800px;
  margin: 0 auto
}
.policy-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e0e0e0
}
.policy-section:last-child {
  border-bottom: none
}
.policy-section h2 {
  color: #1a1a1a;
  margin-bottom: 1rem
}
.policy-section ul {
  margin-left: 1.5rem;
  margin-top: 1rem
}
.policy-section li {
  margin-bottom: .5rem
}
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #ff6b35;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  z-index: 1000
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible
}
.back-to-top:hover {
  background: #ff8c42;
  transform: translateY(-2px)
}
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #333;
  color: #fff;
  border-radius: 50%;
  transition: .3s
}
.social-links a:hover {
  background: #ff6b35;
  transform: translateY(-2px)
}
.app-download-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem
}
.app-download-links .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  font-size: .9rem
}
@media (max-width:768px) {
  .header-content {
    padding: 0 1rem
  }
  .site-logo {
    font-size: 1.5rem
  }
  .main-navigation {
    display: none!important
  }
  .mobile-menu-toggle {
    display: flex!important
  }
  .mobile-navigation {
    padding: 5rem 1.5rem 2rem
  }
  .mobile-menu-close {
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px
  }
  .mobile-nav-menu .main-menu-link {
    padding: 1rem 1.25rem;
    font-size: 1rem
  }
  .mobile-nav-menu .sub-menu-link {
    padding: .875rem 1rem;
    font-size: .95rem
  }
  .hero-content h1 {
    font-size: 2rem
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center
  }
  .btn {
    width: 100%;
    max-width: 300px
  }
  .features-grid,
  .screenshots-grid,
  .testimonials-grid {
    grid-template-columns: 1fr
  }
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center
  }
  .footer-menu {
    align-items: center
  }
  .contact-methods {
    grid-template-columns: 1fr
  }
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 1.25rem
  }
  body.menu-open {
    position: fixed;
    width: 100%
  }
}
.wp-block-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px
}
.aligncenter {
  text-align: center
}
.alignleft {
  float: left;
  margin-right: 1rem
}
.alignright {
  float: right;
  margin-left: 1rem
}
.screen-reader-text {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden
}
.loading {
  opacity: .6;
  pointer-events: none
}
.community-intro {
  padding: 6rem 0;
  background: #fff;
  text-align: center
}
.community-intro h2 {
  color: #1a1a1a;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 2rem;
  line-height: 1.2
}
.intro-text {
  font-size: 1.3rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto 4rem;
  line-height: 1.7
}
.community-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto
}
.stat-card {
  background: linear-gradient(135deg,#f8f9fa 0,#e9ecef 100%);
  padding: 2.5rem 1.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,.08);
  border: 1px solid rgba(255,107,53,.1);
  transition: .3s;
  position: relative;
  overflow: hidden
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg,#ff6b35 0,#ff8c42 100%)
}
.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,.15)
}
.stat-card h3 {
  font-size: 2rem;
  font-weight: 900;
  color: #ff6b35;
  margin-bottom: .5rem;
  line-height: 1
}
.stat-card p {
  font-size: 1.1rem;
  color: #666;
  font-weight: 600;
  margin: 0
}
.bike-types-section {
  padding: 6rem 0;
  background: linear-gradient(135deg,#f8f9fa 0,#e9ecef 100%)
}
.bike-types-section .section-title {
  text-align: center;
  margin-bottom: 4rem
}
.bike-types-section .section-title h2 {
  color: #1a1a1a;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2
}
.bike-types-section .section-title p {
  font-size: 1.2rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6
}
.bike-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 2.5rem;
  margin-top: 3rem
}
.bike-type-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
  text-align: center;
  transition: .4s;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden
}
.bike-type-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(135deg,#ff6b35 0,#ff8c42 100%)
}
.bike-type-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,.15);
  border-color: rgba(255,107,53,.2)
}
.bike-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg,#ff6b35 0,#ff8c42 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: #fff;
  transition: .3s
}
.bike-type-card:hover .bike-icon {
  transform: scale(1.1) rotate(5deg)
}
.bike-type-card h3 {
  color: #1a1a1a;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3
}
.bike-type-card p {
  color: #666;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem
}
.bike-count {
  background: linear-gradient(135deg,#ff6b35 0,#ff8c42 100%);
  color: #fff;
  padding: .8rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: .95rem;
  display: inline-block
}
.community-features {
  padding: 6rem 0;
  background: #fff
}
.community-features .section-title {
  text-align: center;
  margin-bottom: 4rem
}
.community-features .section-title h2 {
  color: #1a1a1a;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2
}
.community-features .section-title p {
  font-size: 1.2rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap: 2.5rem;
  margin-top: 3rem
}
.feature-card {
  background: linear-gradient(135deg,#f8f9fa 0,#e9ecef 100%);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,.08);
  text-align: center;
  transition: .4s;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg,#ff6b35 0,#ff8c42 100%)
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,.15);
  border-color: rgba(255,107,53,.2)
}
.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg,#ff6b35 0,#ff8c42 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #fff;
  transition: .3s
}
.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-5deg)
}
.feature-card h3 {
  color: #1a1a1a;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3
}
.feature-card p {
  color: #666;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0
}
.motorcycle-culture {
  padding: 6rem 0;
  background: linear-gradient(135deg,#1a1a1a 0,#2d2d2d 100%);
  color: #fff;
  text-align: center
}
.motorcycle-culture h2 {
  color: #fff;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 4rem;
  line-height: 1.2
}
.culture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap: 2.5rem;
  margin-bottom: 4rem
}
.culture-card {
  background: rgba(255,255,255,.05);
  padding: 2.5rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.1);
  transition: .4s;
  text-align: left
}
.culture-card:hover {
  background: rgba(255,107,53,.1);
  border-color: rgba(255,107,53,.3);
  transform: translateY(-8px)
}
.culture-card h3 {
  color: #ff6b35;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3
}
.culture-card p {
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0
}
.biker-quote {
  background: rgba(255,255,255,.05);
  padding: 3rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.1);
  max-width: 800px;
  margin: 0 auto
}
.biker-quote blockquote {
  font-size: 1.3rem;
  font-style: italic;
  color: #fff;
  margin: 0 0 1.5rem;
  line-height: 1.6
}
.biker-quote cite {
  color: #ff6b35;
  font-weight: 600;
  font-style: normal
}
.biker-faq {
  padding: 6rem 0;
  background: #f8f9fa
}
.biker-faq h2 {
  color: #1a1a1a;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 4rem;
  text-align: center;
  line-height: 1.2
}
.faq-item {
  background: #fff;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,.08);
  margin-bottom: 2rem;
  border-left: 5px solid #ff6b35;
  transition: .3s
}
.faq-item:hover {
  transform: translateX(10px);
  box-shadow: 0 12px 35px rgba(0,0,0,.12)
}
.faq-item h3 {
  color: #1a1a1a;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3
}
.faq-item p {
  color: #666;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0
}
.biker-testimonials {
  padding: 6rem 0;
  background: #fff
}
.biker-testimonials h2 {
  color: #1a1a1a;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 4rem;
  text-align: center;
  line-height: 1.2
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(350px,1fr));
  gap: 2.5rem;
  margin-top: 3rem
}
.testimonial-card {
  background: linear-gradient(135deg,#f8f9fa 0,#e9ecef 100%);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
  border: 2px solid transparent;
  transition: .4s;
  position: relative;
  overflow: hidden
}
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg,#ff6b35 0,#ff8c42 100%)
}
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,.15);
  border-color: rgba(255,107,53,.2)
}
.testimonial-info h4 {
  font-weight: 700;
  line-height: 1.3
}
.bike-type {
  background: #ff6b35;
  color: #fff;
  padding: .3rem .8rem;
  border-radius: 15px;
  font-size: .8rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: .5rem
}
.rating {
  margin-bottom: 1rem
}
.testimonial-card blockquote {
  font-style: italic;
  font-size: 1.1rem;
  color: #333;
  margin: 0 0 2rem;
  line-height: 1.6;
  padding: 1.5rem;
  background: #fff;
  border-radius: 12px;
  border-left: 4px solid #ff6b35
}
.testimonial-stats {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap
}
@keyframes slideInDown {
  from {
    transform: translateY(-20px);
    opacity: 0
  }
  to {
    transform: translateY(0);
    opacity: 1
  }
}
@keyframes slideOutUp {
  from {
    transform: translateY(0);
    opacity: 1
  }
  to {
    transform: translateY(-20px);
    opacity: 0
  }
}
.main-navigation .nav-menu li {
  animation: .3s forwards slideInDown;
  opacity: 0
}
.main-navigation.nav-open .nav-menu li:first-child {
  animation-delay: .1s
}
.main-navigation.nav-open .nav-menu li:nth-child(2) {
  animation-delay: .15s
}
.main-navigation.nav-open .nav-menu li:nth-child(3) {
  animation-delay: .2s
}
.main-navigation.nav-open .nav-menu li:nth-child(4) {
  animation-delay: .25s
}
.main-navigation.nav-open .nav-menu li:nth-child(5) {
  animation-delay: .3s
}
.main-navigation.nav-open .nav-menu li:nth-child(6) {
  animation-delay: .35s
}
.main-navigation .nav-menu a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg,rgba(255,107,53,.1) 0,transparent 100%);
  transition: width .3s
}
.main-navigation .nav-menu a:hover::before {
  width: 100%
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }
  to {
    opacity: 1;
    transform: translateY(0)
  }
}
.fade-in-up {
  opacity: 1;
  transform: translateY(0)
}
#forminator-module-9 .forminator-row label {
  color: #ffff!important
}
.forminator-row label {
  font-size: .9rem!important
}
#forminator-module-19 input {
  border: 1px solid #000!important
}
.forminator-field-email .forminator-input,
.forminator-input,
.forminator-input.forminator-email--field {
  border: 2px solid #e1e5e9!important;
  border-radius: 8px!important;
  padding: .75rem 1rem!important;
  font-size: 1rem!important;
  transition: border-color .3s,box-shadow .3s!important;
  background: #fff!important;
  width: 100%!important;
  box-sizing: border-box!important
}
.forminator-field-email .forminator-input:focus,
.forminator-input.forminator-email--field:focus,
.forminator-input:focus {
  outline: 0!important;
  border-color: #007cba!important;
  box-shadow: 0 0 0 3px rgba(0,124,186,.1)!important
}
.forminator-has_error .forminator-field-email .forminator-input,
.forminator-has_error .forminator-input,
.forminator-has_error .forminator-input.forminator-email--field {
  border-color: #e74c3c!important;
  box-shadow: 0 0 0 3px rgba(231,76,60,.1)!important
}
.select2-container {
  width: 100%!important;
  font-family: inherit!important
}
.select2-container .select2-selection--single {
  height: 48px!important;
  border: 2px solid #e1e5e9!important;
  border-radius: 8px!important;
  background: #fff!important;
  transition: .3s!important;
  box-shadow: 0 2px 4px rgba(0,0,0,.05)!important;
  position: relative!important
}
.select2-container .select2-selection--single:hover {
  border-color: #007cba!important;
  box-shadow: 0 4px 8px rgba(0,0,0,.1)!important;
  transform: translateY(-1px)!important
}
.select2-container.select2-container--focus .select2-selection--single,
.select2-container.select2-container--open .select2-selection--single {
  border-color: #007cba!important;
  box-shadow: 0 0 0 3px rgba(0,124,186,.15)!important;
  outline: 0!important
}
.select2-container .select2-selection__rendered {
  color: #2c3e50!important;
  line-height: 44px!important;
  padding-left: 12px!important;
  padding-right: 40px!important;
  font-size: 1rem!important;
  font-weight: 500!important
}
.select2-container .select2-selection__arrow {
  height: 44px!important;
  right: 12px!important;
  top: 2px!important;
  width: 20px!important
}
.select2-container .select2-selection__arrow b {
  border-color: #6c757d transparent transparent!important;
  border-style: solid!important;
  border-width: 6px 6px 0!important;
  height: 0!important;
  left: 50%!important;
  margin-left: -6px!important;
  margin-top: -3px!important;
  position: absolute!important;
  top: 50%!important;
  width: 0!important;
  transition: transform .3s!important
}
.select2-container--open .select2-selection__arrow b {
  border-color: transparent transparent #6c757d!important;
  border-width: 0 6px 6px!important;
  margin-top: -9px!important
}
.select2-dropdown {
  border: 2px solid #007cba!important;
  border-radius: 8px!important;
  box-shadow: 0 8px 25px rgba(0,0,0,.15)!important;
  background: #fff!important;
  z-index: 9999!important;
  margin-top: 4px!important;
  overflow: hidden!important
}
.select2-dropdown--below {
  border-top: none!important;
  border-top-left-radius: 0!important;
  border-top-right-radius: 0!important
}
.select2-dropdown--above {
  border-bottom: none!important;
  border-bottom-left-radius: 0!important;
  border-bottom-right-radius: 0!important;
  margin-top: -4px!important
}
.select2-search--dropdown {
  padding: 8px!important;
  background: #f8f9fa!important;
  border-bottom: 1px solid #e1e5e9!important
}
.select2-search--dropdown .select2-search__field {
  border: 1px solid #e1e5e9!important;
  border-radius: 6px!important;
  padding: 8px 12px!important;
  font-size: .95rem!important;
  background: #fff!important;
  color: #2c3e50!important;
  transition: .3s!important
}
.select2-search--dropdown .select2-search__field:focus {
  outline: 0!important;
  border-color: #007cba!important;
  box-shadow: 0 0 0 2px rgba(0,124,186,.1)!important
}
.select2-results {
  max-height: 300px!important;
  overflow-y: auto!important
}
.select2-results__options {
  padding: 4px 0!important
}
.select2-results__option {
  padding: 12px 16px!important;
  color: #2c3e50!important;
  font-size: .95rem!important;
  line-height: 1.4!important;
  transition: .2s!important;
  border-bottom: 1px solid #f1f3f4!important;
  position: relative!important
}
.select2-results__option:last-child {
  border-bottom: none!important
}
.select2-results__option:hover {
  background: #e3f2fd!important;
  color: #1565c0!important;
  transform: translateX(4px)!important
}
.select2-results__option--highlighted {
  background: #007cba!important;
  color: #fff!important;
  transform: translateX(4px)!important
}
.select2-results__option--selected {
  background: #f8f9fa!important;
  color: #495057!important;
  font-weight: 600!important
}
.select2-results__option--selected:hover {
  background: #e9ecef!important;
  color: #495057!important
}
.select2-results__option--loading {
  background: #f8f9fa!important;
  color: #6c757d!important;
  font-style: italic!important
}
.select2-results__message {
  padding: 16px!important;
  color: #6c757d!important;
  font-style: italic!important;
  text-align: center!important;
  background: #f8f9fa!important
}
.select2-container--error .select2-selection--single {
  border-color: #e74c3c!important;
  box-shadow: 0 0 0 3px rgba(231,76,60,.1)!important
}
.select2-container--error .select2-selection--single:hover {
  border-color: #e74c3c!important;
  box-shadow: 0 0 0 3px rgba(231,76,60,.15)!important
}
.select2-container--disabled .select2-selection--single {
  background: #f8f9fa!important;
  color: #6c757d!important;
  cursor: not-allowed!important;
  opacity: .7!important
}
.select2-container--disabled .select2-selection--single:hover {
  border-color: #e1e5e9!important;
  transform: none!important;
  box-shadow: 0 2px 4px rgba(0,0,0,.05)!important
}
.forminator-select .select2-container {
  width: 100%!important
}
.forminator-field .select2-container {
  margin-top: 0!important
}
@media (max-width:768px) {
  .select2-container .select2-selection--single {
    height: 44px!important
  }
  .select2-container .select2-selection__rendered {
    line-height: 40px!important;
    font-size: .95rem!important;
    padding-left: 10px!important;
    padding-right: 35px!important
  }
  .select2-container .select2-selection__arrow {
    height: 40px!important;
    right: 10px!important
  }
  .select2-dropdown {
    margin-top: 2px!important
  }
  .select2-results__option {
    padding: 10px 12px!important;
    font-size: .9rem!important
  }
}
@media (prefers-contrast:high) {
  .select2-container .select2-selection--single {
    border-color: #000!important;
    border-width: 3px!important
  }
  .select2-container .select2-selection--single:hover,
  .select2-container.select2-container--focus .select2-selection--single,
  .select2-container.select2-container--open .select2-selection--single {
    border-color: #000!important;
    box-shadow: 0 0 0 3px rgba(0,0,0,.3)!important
  }
  .select2-dropdown {
    border-color: #000!important;
    border-width: 3px!important
  }
  .select2-results__option--highlighted {
    background: #000!important;
    color: #fff!important
  }
}
.footer-bottom a {
  color: #fff
}
.ai-optimized-content {
  padding: 4rem 0;
  background: #f8f9fa
}
.step-by-step-guide {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap: 2rem;
  margin-top: 2rem
}
.step {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,.1);
  border-left: 4px solid #ff6b35
}
.step h3 {
  color: #ff6b35;
  margin-bottom: 1rem;
  font-size: 1.3rem
}
.step p {
  color: #666;
  line-height: 1.6
}
.comprehensive-guide {
  padding: 4rem 0;
  background: #fff
}
.comprehensive-guide h2 {
  color: #1a1a1a;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center
}
.comprehensive-guide h3 {
  color: #ff6b35;
  font-size: 1.8rem;
  margin: 2rem 0 1rem
}
.comprehensive-guide ul {
  margin: 1rem 0;
  padding-left: 2rem
}
.comprehensive-guide li {
  margin-bottom: .8rem;
  line-height: 1.6
}
.success-stories {
  margin: 2rem 0;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 15px;
  border-left: 4px solid #ff6b35
}
.success-stories blockquote {
  font-style: italic;
  font-size: 1.1rem;
  color: #333;
  margin: 0
}
.voice-search-optimized {
  padding: 4rem 0;
  background: #f8f9fa
}
.voice-search-optimized h2 {
  color: #1a1a1a;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center
}
.voice-search-optimized .faq-item {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,.1);
  margin-bottom: 1.5rem;
  border-left: 4px solid #ff6b35
}
.voice-search-optimized .faq-item h3 {
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-size: 1.3rem
}
.voice-search-optimized .faq-item p {
  color: #666;
  line-height: 1.6;
  margin: 0
}
.linkable-assets {
  padding: 4rem 0;
  background: #fff
}
.linkable-assets h2 {
  color: #1a1a1a;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center
}
.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap: 2rem;
  margin-top: 2rem
}
.resource-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,.1);
  transition: transform .3s;
  border: 2px solid transparent
}
.resource-card:hover {
  transform: translateY(-5px);
  border-color: #ff6b35
}
.resource-card h3 {
  color: #ff6b35;
  margin-bottom: 1rem;
  font-size: 1.3rem
}
.resource-card p {
  color: #666;
  line-height: 1.6;
  margin: 0
}
.detailed-testimonials {
  padding: 4rem 0;
  background: #f8f9fa
}
.detailed-testimonials h2 {
  color: #1a1a1a;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center
}
.testimonial-detailed {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,.1);
  margin-bottom: 2rem;
  border-left: 4px solid #ff6b35
}
.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem
}
.testimonial-header img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  object-fit: cover
}
.testimonial-info h4 {
  color: #1a1a1a;
  margin: 0 0 .25rem;
  font-size: 1.2rem
}
.testimonial-info p {
  color: #666;
  margin: 0 0 .25rem;
  font-size: .9rem
}
.rating {
  color: gold;
  font-size: 1.1rem
}
.testimonial-detailed blockquote {
  font-style: italic;
  font-size: 1.1rem;
  color: #333;
  margin: 1rem 0;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 3px solid #ff6b35
}
.testimonial-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
  flex-wrap: wrap
}
.testimonial-stats span {
  background: #ff6b35;
  color: #fff;
  padding: .5rem 1rem;
  border-radius: 20px;
  font-size: .9rem;
  font-weight: 500
}
img[loading=lazy] {
  opacity: 0;
  transition: opacity .3s
}
img[loading=lazy].loaded {
  opacity: 1
}
.download-cta-section,
.faq-section,
.features-section,
.hero-section,
.screenshots-section,
.testimonials-section {
  contain: layout style paint
}
@media (max-width:768px) {
  .community-intro {
    padding: 4rem 0
  }
  .community-intro h2 {
    font-size: 2.2rem
  }
  .intro-text {
    font-size: 1.1rem;
    margin-bottom: 3rem
  }
  .community-stats {
    grid-template-columns: repeat(2,1fr);
    gap: 1.5rem
  }
  .stat-card {
    padding: 2rem 1rem
  }
  .stat-card h3 {
    font-size: 1.8rem
  }
  .bike-types-section {
    padding: 4rem 0
  }
  .bike-types-section .section-title h2 {
    font-size: 2.2rem
  }
  .bike-types-section .section-title p {
    font-size: 1.1rem
  }
  .bike-types-grid {
    grid-template-columns: 1fr;
    gap: 2rem
  }
  .bike-type-card {
    padding: 2rem
  }
  .bike-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem
  }
  .bike-type-card h3 {
    font-size: 1.4rem
  }
  .community-features {
    padding: 4rem 0
  }
  .community-features .section-title h2 {
    font-size: 2.2rem
  }
  .community-features .section-title p {
    font-size: 1.1rem
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem
  }
  .feature-card {
    padding: 2rem
  }
  .feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem
  }
  .feature-card h3 {
    font-size: 1.3rem
  }
  .motorcycle-culture {
    padding: 4rem 0
  }
  .motorcycle-culture h2 {
    font-size: 2.2rem
  }
  .culture-grid {
    grid-template-columns: 1fr;
    gap: 2rem
  }
  .culture-card {
    padding: 2rem
  }
  .culture-card h3 {
    font-size: 1.4rem
  }
  .biker-quote {
    padding: 2rem
  }
  .biker-quote blockquote {
    font-size: 1.1rem
  }
  .biker-faq {
    padding: 4rem 0
  }
  .biker-faq h2 {
    font-size: 2.2rem
  }
  .faq-item {
    padding: 2rem
  }
  .faq-item h3 {
    font-size: 1.3rem
  }
  .biker-testimonials {
    padding: 4rem 0
  }
  .biker-testimonials h2 {
    font-size: 2.2rem
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 2rem
  }
  .testimonial-card {
    padding: 2rem
  }
  .testimonial-info h4 {
    font-size: 1.2rem
  }
  .testimonial-card blockquote {
    font-size: 1rem;
    padding: 1rem
  }
  .testimonial-stats {
    justify-content: center
  }
  .resource-grid,
  .step-by-step-guide {
    grid-template-columns: 1fr
  }
  .testimonial-header {
    flex-direction: column;
    text-align: center
  }
  .testimonial-header img {
    margin-right: 0;
    margin-bottom: 1rem
  }
  .comprehensive-guide h2,
  .detailed-testimonials h2,
  .linkable-assets h2,
  .voice-search-optimized h2 {
    font-size: 2rem
  }
}
.city-specific-content {
  padding: 4rem 0;
  background: linear-gradient(135deg,#ff6b35 0,#ff8c42 100%);
  color: #fff;
  text-align: center
}
.city-specific-content h2 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,.1)
}
.city-specific-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: .95
}
.city-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto
}
.city-stats .stat-item {
  background: rgba(255,255,255,.15);
  padding: 1.5rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2)
}
.city-stats .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: .5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,.1)
}
.city-stats .stat-label {
  font-size: .9rem;
  opacity: .9;
  font-weight: 500
}
@media (max-width:768px) {
  .city-specific-content h2 {
    font-size: 2rem
  }
  .city-stats {
    grid-template-columns: 1fr;
    gap: 1rem
  }
  .city-stats .stat-item {
    padding: 1rem
  }
  .city-stats .stat-number {
    font-size: 1.5rem
  }
}
.error-404-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 4rem 0;
  background: linear-gradient(135deg,#1a1a1a 0,#2d2d2d 100%);
  color: #fff
}
.error-404-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto
}
.error-404-visual {
  margin-bottom: 3rem;
  position: relative
}
.error-404-number {
  font-size: 8rem;
  font-weight: 900;
  color: #ff6b35;
  line-height: 1;
  margin-bottom: 1rem;
  text-shadow: 0 4px 8px rgba(255,107,53,.3);
  animation: 2s ease-in-out infinite alternate pulse
}
@keyframes pulse {
  0% {
    transform: scale(1)
  }
  100% {
    transform: scale(1.05)
  }
}
.motorcycle-illustration {
  margin: 2rem 0;
  opacity: .9
}
.motorcycle-illustration svg {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, .3))
}
.error-404-text {
  margin-bottom: 4rem
}
.error-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 1.5rem;
  line-height: 1.2
}
.error-description {
  font-size: 1.2rem;
  color: #e0e0e0;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto
}
.error-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem
}
.error-actions .btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: .3s;
  min-width: 200px;
  justify-content: center
}
.error-actions .btn-primary {
  background: linear-gradient(135deg,#ff6b35 0,#ff8c42 100%);
  color: #fff;
  border: none
}
.error-actions .btn-primary:hover {
  background: linear-gradient(135deg,#ff8c42 0,#ff6b35 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,107,53,.4)
}
.error-actions .btn-secondary {
  background: 0 0;
  color: #ff6b35;
  border: 2px solid #ff6b35
}
.error-actions .btn-secondary:hover {
  background: #ff6b35;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,107,53,.3)
}
.error-404-help {
  background: rgba(255,255,255,.05);
  border-radius: 16px;
  padding: 3rem 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.1)
}
.error-404-help h3 {
  font-size: 1.8rem;
  color: #ff6b35;
  margin-bottom: 2rem;
  font-weight: 600
}
.help-links {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 2rem
}
.help-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255,255,255,.03);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.1);
  transition: .3s
}
.help-item:hover {
  background: rgba(255,107,53,.1);
  border-color: rgba(255,107,53,.3);
  transform: translateY(-4px)
}
.help-item h4 {
  font-size: 1.3rem;
  color: #ff6b35;
  margin-bottom: .8rem;
  font-weight: 600
}
.help-item p {
  color: #b0b0b0;
  margin-bottom: 1.2rem;
  line-height: 1.5
}
.help-link {
  color: #ff6b35;
  text-decoration: none;
  font-weight: 600;
  padding: .8rem 1.5rem;
  border: 2px solid #ff6b35;
  border-radius: 6px;
  display: inline-block;
  transition: .3s
}
.help-link:hover {
  background: #ff6b35;
  color: #fff;
  transform: translateY(-2px)
}
@media (max-width:768px) {
  .coming-soon {
    position: relative;
    margin-top: 25px
  }
  .error-404-section {
    padding: 2rem 0;
    min-height: 70vh
  }
  .error-404-number {
    font-size: 6rem
  }
  .error-title {
    font-size: 2rem
  }
  .error-description {
    font-size: 1.1rem;
    padding: 0 1rem
  }
  .error-actions {
    flex-direction: column;
    align-items: center
  }
  .error-actions .btn {
    width: 100%;
    max-width: 300px
  }
  .error-404-help {
    padding: 2rem 1rem
  }
  .help-links {
    grid-template-columns: 1fr;
    gap: 1.5rem
  }
  .help-item {
    padding: 1.2rem
  }
}
@media (max-width:480px) {
  .error-404-number {
    font-size: 4rem
  }
  .error-title {
    font-size: 1.8rem
  }
  .error-description {
    font-size: 1rem
  }
  .motorcycle-illustration svg {
    width: 150px;
    height: 90px
  }
}
.coming-soon {
  position: relative;
  width: 100%
}