.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  z-index: 1100;
  width: 36px;
  height: 36px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
  opacity 0.25s ease,
  width 0.3s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1200px) {
  .hero-title {
    font-size: 58px;
  }
  .hero-image img {
    width: 580px;
  }
  .feature-strip-inner {
    padding: 0 18px;
  }
  .faq-wrapper {
    grid-template-columns: 320px 1fr;
    gap: 32px;
  }
  .faq-heading {
    font-size: 38px;
    line-height: 44px;
  }
  .testimonial-left {
    width: 320px;
  }
  .testimonial-right {
    width: calc(100% - 170px);
  }
  .testimonial-title {
    font-size: 38px;
  }
}

@media (max-width: 1024px) {
  .nav-links {
    gap: 24px;
  }
  .nav-links a,
  .nav-dd {
    font-size: 13px;
    letter-spacing: 0.4px;
  }
  .hero-section {
    min-height: 680px;
  }
  .hero-wrapper {
    min-height: 600px;
  }
  .hero-title {
    font-size: 52px;
    letter-spacing: -1px;
  }
  .hero-desc {
    font-size: 16px;
  }
  .hero-image img {
    width: 460px;
  }
  .hero-image {
    right: -20px;
  }
  .feature-strip-inner {
    height: auto;
    flex-wrap: wrap;
    gap: 18px;
    padding: 20px 18px;
  }
  .strip-item {
    flex: 1 1 40%;
  }
  .strip-divider {
    display: none;
  }
  .features-heading h2 {
    font-size: 36px;
    line-height: 42px;
  }
  .faq-wrapper {
    grid-template-columns: 260px 1fr;
    gap: 28px;
  }
  .faq-heading {
    font-size: 32px;
    line-height: 40px;
  }
  .testimonial-left {
    width: 260px;
  }
  .testimonial-right {
    width: calc(100% - 140px);
  }
  .testimonial-title {
    font-size: 32px;
  }
  .contact-card {
    padding: 36px 30px;
  }
  .contact-heading {
    font-size: 36px;
  }
}

@media (max-width: 991px) {
  .pricing-modal-content {
    margin: 20px;
  }
  .pricing-modal-grid {
    grid-template-columns: 1fr;
  }
  .pricing-modal-left,
  .pricing-modal-right {
    padding: 24px;
  }
  .pricing-form-row {
    grid-template-columns: 1fr;
  }
  .pricing-modal-title {
    font-size: 38px;
  }
  .nav-cta {
    width: 100px;
  }
}

@media (max-width: 768px) {
  .nav-hamburger {
    display: flex;
  }
  .legal-section {
    padding: 100px 0 60px;
  }
  .legal-title {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 5px;
  }
  .legal-text {
    padding: 32px 24px;
  }
  .legal-text h2 {
    font-size: 20px;
    margin-top: 24px;
  }
  .legal-text p {
    font-size: 15px;
  }
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
 .nav-links {
  position: fixed;
  top: 72px; /* navbar height */
  left: 0;
  width: 100%;
  height: calc(100vh - 72px);
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  pointer-events: none;
  overflow-y: auto;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    visibility 0.35s ease;
  gap: 0;
}

.nav-links.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
  .nav-links a,
  .nav-dd {
    padding: 14px 24px;
    font-size: 14px;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
  }
  .dropdown {
    width: 100%;
  }
  .submenu {
    position: static;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: none;
    visibility: visible;
    transition:
    max-height 0.32s cubic-bezier(0.23, 1, 0.32, 1),
    opacity 0.24s ease;
  }
  .dropdown.open .submenu {
    max-height: 300px;
    opacity: 1;
  }
  .submenu li a {
    color: var(--text-muted);
    padding: 10px 36px;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }
  /* .nav-inner>.nav-cta {
    display: none;
  } */
  .hero-section {
    min-height: auto;
    margin-top: 72px;
    /* background-image: none !important;
    background: var(--bg-primary); */
    padding-bottom: 40px;
  }
  .hero-wrapper {
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 0 0;
    gap: 32px;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-title {
    font-size: 42px;
    letter-spacing: -1px;
    line-height: 1;
  }
  .hero-desc {
    font-size: 15px;
    max-width: 100%;
  }
  .hero-btn-group {
    flex-wrap: wrap;
  }
  .hero-image {
    display: none;
  }
  .feature-strip {
    margin-top: 0;
  }
  .feature-strip-inner {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 16px;
    border-radius: 12px;
  }
  .strip-item {
    flex: none;
    width: 100%;
  }
  .strip-divider {
    display: none;
  }
  .features-section {
    margin: 40px 0;
  }
  .features-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
  }
  .features-heading h2 {
    font-size: 28px;
    line-height: 34px;
  }
  .feature-arrows {
    align-self: flex-start;
  }
  .faq-section {
    margin: 40px 0;
    padding: 28px 0;
  }
  .faq-wrapper {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .faq-heading {
    font-size: 28px;
    line-height: 34px;
  }
  .faq-question {
    font-size: 15px;
  }
  .feature-arrows.desktop{
     display: none;
  }
  .feature-arrows.mobile{
    display: flex;
    justify-content: center;
  }
  .testimonial-slider {
    padding-bottom: 20px;
  }
  .testimonial-section {
    margin: 40px 0;
  }
  .testimonial-wrapper {
    flex-direction: column;
    gap: 24px;
  }
  .testimonial-left {
    width: 100%;
    flex-shrink: unset;
  }
  .testimonial-right {
    width: 100%;
    margin-bottom: 0;
  }
  .testimonial-title {
    font-size: 28px;
  }
  .contact-section {
    margin: 40px 0;
  }
  .contact-card {
    flex-direction: column;
    padding: 28px 20px;
    gap: 24px;
  }
  .contact-content {
    width: 100%;
  }
  .contact-heading {
    font-size: 28px;
  }
  .contact-form-wrap {
    width: 100%;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .footer {
    padding: 24px 0 16px;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .footer-brand {
    max-width: 100%;
  }
  .footer-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
  }
  .footer-center {
    justify-content: flex-start;
    padding-top: 0;
    width: 100%;
  }
  .footer-email {
    font-size: 15px;
  }
  .footer-links {
    padding-top: 0;
    flex-wrap: wrap;
    gap: 6px;
  }
  .footer-links a {
    font-size: 14px;
  }
  .footer-bottom {
    margin-top: 20px;
    font-size: 13px;
  }
  .video-popup-content video {
    height: 240px;
  }

  .video-popup-close {
    top: -44px;
    right: 0;
  }
  .hero-desc {
    margin-top: 10px;
  }
  .pricing-modal-features {
    gap: 10px;
  }
  .pricing-feature-item h4,
  .pricing-feature-item p {
    font-size: 10px;
  }
   .video-popup-content iframe {
    height: 300px;
  }
  .video-popup-close {
    top: -50px;
    right: 0;
  }
  .footer {
    padding: 24px 0 16px;
  }
  .footer-inner {
    flex-direction: column;
    gap: 20px;
  }
  .footer-center {
    justify-content: flex-start;
    padding-top: 0;
  }
  .footer-links {
    padding-top: 0;
    flex-wrap: wrap;
  }
  .footer-bottom {
    margin-top: 20px;
  }
  .faq-answer {
    font-size: 12px;
    line-height: 16px;
  }
  .faq-card {
    padding: 10px 0 10px;
  }
  .testimonial-card p {
    font-size: 12px;
    line-height: 16px;
    margin: 25px 0;
  }
  .legal-intro {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 30px;
    font-weight: 400;
}
.form-checkbox label {
    font-size: 14px;
    line-height: 20px;
}
}

/* ─────────────────────────────────────────
   SMALL MOBILE  ≤ 480px
───────────────────────────────────────── */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  /* Hero */
  .hero-title {
    font-size: 34px;
  }
  .hero-desc {
    font-size: 14px;
  }
  .btn-demo,
  .btn-buy {
    width: 140px;
    height: 46px;
    font-size: 14px;
  }
  /* FAQ */
  .faq-heading {
    font-size: 24px;
    line-height: 30px;
  }
  .faq-question {
    font-size: 14px;
  }
  /* Testimonials */
  .testimonial-title {
    font-size: 24px;
  }
  .testimonial-card {
    padding: 15px;
    min-height: auto;
  }
  /* Contact */
  .contact-heading {
    font-size: 24px;
  }
  .contact-card {
    padding: 20px 16px;
  }
  .submit-btn {
    width: 120px;
    height: 46px;
    font-size: 13px;
  }
  /* Footer */
  .footer-email {
    font-size: 14px;
  }
}

/* ─────────────────────────────────────────
   TABLET  ≤ 1024px
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .priceing-section,
  .priceing-section .hero-wrapper {
    min-height: 300px;
    background-position: right center;
    background-repeat: no-repeat;
  }
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .pricing-card {
    padding: 20px 18px;
  }
  .price-amount {
    font-size: 30px;
  }
  .card-subtitle {
    width: auto;
    font-size: 13px;
  }
  .addons-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .addons-title {
    font-size: 28px;
  }
  .addons-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .addon-price {
    font-size: 24px;
  }
  .how-it-works-title {
    font-size: 28px;
    margin-bottom: 32px;
  }
  .steps-grid {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 10px;
  }
  .step-num {
    font-size: 44px;
  }
  .step-title {
    font-size: 14px;
  }
  .trust-badges-bar {
    padding: 24px 0;
  }
  .trust-badge-item {
    padding: 0 20px;
    gap: 14px;
  }
  .trust-badge-title {
    font-size: 14px;
  }
  .trust-badge-desc {
    font-size: 12px;
  }
  .download-section {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 40px 24px;
    margin: 40px 0;
  }
  .download-title {
    font-size: 28px;
  }
  .download-desc {
    font-size: 16px;
    line-height: 24px;
  }
  .sys-req {
    grid-column: 1 / -1;
  }
  .download-visual {
    justify-content: center;
  }
  .download-visual img {
    max-width: 320px;
  }
  .pricing-modal-grid {
    grid-template-columns: 420px 1fr;
  }
  .pricing-modal-image img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 991px) {
  .priceing-section {
    /* background-image: none !important;
    background: var(--bg-primary); */
  }
  .priceing-section .hero-wrapper {
    min-height: 260px;
  }
  .priceing-section .hero-title {
    font-size: 40px;
    line-height: 46px;
  }  
  .pricing-card.popular {
    order: -1;
  }
  .addon-card {
    flex-direction: row;
    align-items: flex-start;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .step-arrow {
    transform: rotate(90deg);
    margin: 8px auto;
  }
  .step-card {
    width: 100%;
  }
  .download-section {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px;
    text-align: center;
  }
  .download-info {
    align-items: center;
  }
  .download-visual img {
    max-width: 280px;
  }
  .sys-req {
    grid-column: auto;
  }
  .sys-req-table td {
    font-size: 13px;
  }
  .pricing-modal-content {
    margin: 16px;
    max-height: 90vh;
    overflow-y: auto;
  }
  .pricing-modal-grid {
    grid-template-columns: 1fr;
  }
  .pricing-modal-left {
    padding: 28px 24px;
  }
  .pricing-modal-right {
    padding: 28px 24px;
  }
  .pricing-modal-image {
    display: none;
  }
  .pricing-modal-title {
    font-size: 28px;
  }
  .pricing-form-row {
    grid-template-columns: 1fr;
  }
  .features-list {
    gap: 8px;
  }
  .addons-container {
    padding: 20px 15px;
  }
  .footer-links a {
    font-size: 14px;
    line-height: 20px;
 }
 .footer-right {
    gap: 20px;
  }
  .footer-email {
    font-size: 16px;
    line-height: 20px;
  }
  .copy-write-section {
    margin-top: 15px;
    font-size: 14px;
    line-height: 20px;
  }
  .nav-inner {
    padding: 0 10px;
  }
  .container {
    padding: 0 10px;
  }
  .features-list li {
    font-size: 14px;
  }
  .features-list li::before {
    top: 4px;
  }
}

@media (max-width: 768px) {
  /* .priceing-section {
    background-image: none !important;
    background: var(--bg-primary);
  } */
  .priceing-section .hero-wrapper {
    min-height: auto;
    padding: 32px 0 24px;
  }
  .priceing-section .hero-title {
    font-size: 34px;
    line-height: 40px;
    letter-spacing: -1px;
  }
  .priceing-section .hero-desc {
    font-size: 15px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto 32px;
    gap: 24px;
  }
  .pricing {
    margin-bottom: 48px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 20px;
    margin-bottom: 20px;
  }
  .pricing-card {
    padding: 20px 18px;
  }
  .price-amount {
    font-size: 32px;
  }
   .addons-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .pricing-btn {
    padding: 13px;
    font-size: 14px;
    margin-bottom: 28px;
  }
  .features-list {
    gap: 14px;
  }
  .features-list li {
    font-size: 14px;
  }
  .see-features-link {
    font-size: 14px;
    margin-top: 28px;
  }
  .pricing-disclaimer {
    font-size: 12px;
    text-align: center;
    margin-top: 24px;
  }
  .addons {
    margin: 40px 0;
  }
  .addons-container {
    padding: 20px 18px;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .addons-title {
    font-size: 24px;
  }
  .addons-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .addon-card {
    padding: 18px 16px;
  }
  .addon-name {
    font-size: 15px;
  }
  .addon-desc {
    font-size: 13px;
    margin-bottom: 16px;
  }
  .addon-price {
    font-size: 26px;
  }
  .addon-content {
    width: 100%;
  }
  .how-it-works {
    margin: 40px 0 16px;
  }
  .how-it-works-title {
    font-size: 24px;
    margin-bottom: 28px;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .step-card {
    padding: 16px;
    gap: 14px;
    border-radius: 8px;
  }
  .step-arrow {
    transform: rotate(90deg);
    margin: 10px auto;
    display: flex;
  }
  .step-num {
    font-size: 38px;
  }
  .step-title {
    font-size: 15px;
  }
  .step-desc {
    font-size: 13px;
  }
  .trust-badge-item {
    padding: 20px 24px;
    border-right: none !important;
    border-bottom: 1px solid var(--border-color);
  }
  .trust-badge-item:last-child {
    border-bottom: none;
  }
  .trust-badges-bar {
    grid-template-columns: 1fr;
    padding: 0;
  }
  .trust-badges-bar {
    grid-template-columns: 1fr;
    margin: 16px 0;
    padding: 0;
    border-radius: 8px;
  }
  .trust-badge-item {
    padding: 18px 20px;
    gap: 14px;
    border-right: none !important;
    border-bottom: 1px solid var(--border-color);
  }
  .trust-badge-item:last-child {
    border-bottom: none;
  }
  .trust-badge-title {
    font-size: 15px;
  }
  .trust-badge-desc {
    font-size: 13px;
  }
  .download-section {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 18px;
    margin: 32px 0;
    text-align: center;
    border-radius: 8px;
  }
  .download-info {
    align-items: center;
  }
  .download-title {
    font-size: 26px;
  }
  .download-desc {
    font-size: 15px;
    line-height: 22px;
  }
  .download-visual img {
    max-width: 260px;
  }
  .sys-req {
    padding: 18px 16px;
  }
  .sys-req-title {
    font-size: 12px;
  }
  .sys-req-table td {
    font-size: 13px;
    padding: 8px 0;
  }
  .pricing-modal-content {
    margin: 12px;
    border-radius: 8px;
    max-height: 92vh;
    overflow-y: auto;
  }
  .pricing-modal-grid {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .pricing-modal-left {
    padding: 24px 18px;
  }
  .pricing-modal-right {
    padding: 24px 18px;
  }
  .pricing-modal-title {
    font-size: 24px;
  }
  .pricing-modal-text {
    font-size: 14px;
  }
  .pricing-modal-image {
    display: none;
  }
  .pricing-modal-features {
    gap: 8px;
    padding-top: 18px;
  }
  .pricing-form {
    gap: 14px;
  }
  .pricing-form-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .pricing-form input,
  .pricing-form select {
    height: 40px;
    font-size: 13px;
  }
  .pricing-btn-cancel,
  .pricing-btn-submit {
    height: 46px;
    font-size: 13px;
  }
  .pricing-btn-cancel {
    width: 120px;
  }
  .pricing-form-actions {
    gap: 10px;
  }
  .success-modal-content {
    margin: 16px;
    padding: 28px 20px;
    max-width: 100%;
  }
  .success-title {
    font-size: 30px;
  }
  .success-subtitle {
    font-size: 16px;
  }
  .success-text {
    font-size: 14px;
  }
  .success-description {
    font-size: 13px;
  }
  .success-btn {
    height: 46px;
    font-size: 15px;
  }
  .success-check img {
    width: 72px;
  }
  .success-logo {
    max-width: 130px;
  }
  .success-divider {
    margin: 24px auto;
  }
  .copy-write-section {
    font-size: 14px;
    line-height: 18px;
  }
}

@media (max-width: 480px) {
  .priceing-section .hero-title {
    font-size: 28px;
    line-height: 34px;
  }
  .priceing-section .hero-desc {
    font-size: 14px;
  }
  .pricing-card {
    padding: 18px 14px;
  }
  .card-title {
    font-size: 14px;
  }
  .card-subtitle {
    font-size: 12px;
    width: auto;
  }
  .price-amount {
    font-size: 28px;
  }
  .price-billing {
    font-size: 12px;
    margin-bottom: 20px;
  }
  .popular-badge {
    font-size: 11px;
    padding: 5px 32px;
  }
  .features-list li {
    font-size: 13px;
  }
  .addons-container {
    padding: 16px 14px;
  }
  .addons-title {
    font-size: 22px;
  }
  .addon-card {
    padding: 14px 12px;
    gap: 12px;
  }
  .addon-price {
    font-size: 22px;
  }
  .how-it-works-title {
    font-size: 22px;
  }
  .step-num {
    font-size: 32px;
  }
  .step-card {
    padding: 14px 12px;
  }
  .trust-badge-title {
    font-size: 14px;
  }
  .trust-badge-desc {
    font-size: 12px;
    line-height: 1.4;
  }
  .download-title {
    font-size: 22px;
  }
  .download-desc {
    font-size: 14px;
  }
  .sys-req-table td {
    font-size: 12px;
    padding: 7px 0;
  }
  .sys-req-label {
    font-size: 12px;
  }
  .pricing-modal-content {
    margin: 8px;
    border-radius: 6px;
  }
  .legal-title {
    font-size: 28px;
    line-height: 36px;
  }
  .legal-text {
    padding: 24px 20px;
  }
  .legal-text h2 {
    font-size: 18px;
  }
  .legal-text p {
    font-size: 14px;
  }
  .pricing-modal-left,
  .pricing-modal-right {
    padding: 18px 14px;
  }
  .pricing-modal-title {
    font-size: 22px;
  }
  .pricing-form input,
  .pricing-form select {
    height: 38px;
  }
  .pricing-btn-submit,
  .pricing-btn-cancel {
    height: 42px;
  }
  .success-modal-content {
    padding: 22px 14px;
  }
  .success-title {
    font-size: 26px;
  }
  .success-check img {
    width: 60px;
  }
}
