* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: #fcf8f4;
    width: auto;
}

#features, #howitworks, #pricing, #faq {
    scroll-margin-top: 5.7rem;
}

.navbar {
    background-color: #fcf8f45b;;
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: none;
    transition: all 0.3s ease;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(139, 111, 71, 0.2);
}

.nav-container {
    width: 95%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-container .bars {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #452b1fd2;
}

.logo-content a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-content img {
    margin: 0 -10px;
    width: 60px;
    height: 60px;
}

.logo-subtitle {
    font-size: 1.1rem;
    color: #452b1fd2;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #452b1fd2;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #8B6F47, #A0826D);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #452b1f;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.nav-btn {
    background-color: #452b1fd2;
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.nav-btn:hover {
    transform: translateY(-2px);
}

.nav-login-btn {
    background: transparent;
    color: #452b1fd2;
    box-shadow: none;
}

/* ===== HERO SECTION ===== */
.hero {
    width: 95%;
    margin: auto;
    padding: 20px 0px 0px 0px;
}

.hero-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    z-index: 2;
}

.hero-text {
    width: 45%;
    color: #3d3d3d;
}

.hero-title {
    width: 85%;
    font-size: 50px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hero-title .easy {
    color: #452b1fd2;
}

.word {
    display: inline-block;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.word:nth-child(1) { animation-delay: 0.2s; }
.word:nth-child(2) { animation-delay: 0.4s; }
.word:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1rem;
    padding-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease forwards 0.8s;
    opacity: 0;
    color: #666;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 0.8s ease forwards 1s;
    opacity: 0;
}

.hero-buttons .btn {
    padding: 17px 27px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.hero-buttons .btn-primary {
    background-color: #452b1fd2;
    color: white;
}

.hero-buttons .btn-primary:hover {
    background-color: #452b1fe0;
    transform: translateY(-2px);
}

.hero-buttons .btn-secondary {
    background: transparent;
    color: #452b1fd2;   
}

.hero-buttons .btn-secondary:hover {
    transform: translateY(-2px);
}

.hero-buttons .explore {
    text-decoration: none;
}

.hero-anime {
    width: 50%;
    padding: 20px;
}

.hero-anime img {
    width: 100%;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(139, 111, 71, 0.15);
    opacity: 0.5;
    animation: float 6s ease-in-out infinite;
}

.bubble-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.bubble-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.bubble-3 {
    width: 80px;
    height: 80px;
    top: 40%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-30px);
    }
}

/* ===== FEATURES SECTION ===== */
.feature-section {
    background-color: #2e6b66;
    margin-top: 100px;
    padding: 6rem 0;
    color: white;
}

.feature-container {
    padding: 0 2rem;
    width: 95%;
    margin: auto;
}

.feature-container .titles {
    text-align: center;
}

.feature-title {
    font-size: 2.5rem;
    padding-bottom: 1rem;
    font-weight: 600;
}

.feature-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.863);
    padding-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.feature-card {
    color: white;
    background-color: #3d8276;
    padding: 30px 22px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(139, 111, 71, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 40px rgba(139, 111, 71, 0.15);
}

.feature-icon {
    padding-bottom: 25px;
}

.feature-icon i {
    font-size: 25px;
    background-color: #214d49;
    color: white;
    border-radius: 4px;
    padding: 9px;
}

.feature-card .heads {
    color: #ffffff;
    padding-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 600;
}

.feature-card .fill {
    font-size: 0.93rem;
    color: rgba(255, 255, 255, 0.774);
    line-height: 1.6;
}

.howitworks-section {
    padding: 100px 2rem 0px 2rem;
    width: 95%;
    margin: auto;
}

.two-title {
    text-align: center;
    margin-bottom: 15px;
}

.two-title .hwTitle {
    font-size: 2.5rem;
    padding-bottom: 1rem;
    font-weight: 600;
}

.two-title .hwSubtitle {
    font-size: 1.2rem;
    color: rgba(0, 0, 0, 0.808);
    padding-bottom: 1.5rem;
}

.buy-sell {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 25px;
}

.buss {
    background-color: transparent;
    padding: 13px 25px;
    border: none;
    font-size: 16px;
    border-radius: 12px;
    cursor: pointer;
    -webkit-appearance: none; 
    appearance: none;   
    color: black !important;
}

.buss.active {
    background-color: #452b1fd2;
    color: white !important;
    font-weight: 600;
}

.howItworks {
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.howItworks .leftImage {
    width: 55%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: #f9f9f9; */
    border-radius: 10px;
    overflow: hidden;
}

.howItworks .lottie {
    width: 400px;
    height: 400px;
}

#lottie-player {
    transition: opacity 0.4s ease-in-out;
    --dotlottie-width: 100%;
    --dotlottie-height: 100%;
}

.howItworks .rightPop {
    width: 40%;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95); /* Starts lower and smaller */
        box-shadow: 0 0 0 rgba(0,0,0,0);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1); /* Settles at its natural position */
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    }
}

.howItworks .rightPop .sides {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 15px 17px;
    margin-bottom: 20px;
    border-left: 2px solid rgba(0, 0, 0, 0.212);
    transition: all 0.4s ease;
    opacity: 0.3;
    background-color: transparent;
    transition: all 0.8s ease-in-out;
    transform: translateY(0);
}

.show {
    opacity: 0.3;
}

.howItworks .rightPop .sides.active {
    opacity: 1;
    border-left: 2px solid #452b1fd2;
    background-color: #ffffff;
    animation: slideUpFade 0.7s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.hidden {
    display: none;
}

.howItworks .rightPop .sides .sideIcon {
    transition: background-color 0.4s ease, color 0.4s ease;
    padding: 7px 9px;
    border-radius: 3px;
    font-size: 25px;
    color: white;
}

.howItworks .rightPop .sides .sideIcon.active {
    background-color: #452b1fd2;
    color: white;
}

.howItworks .rightPop .sides .head {
    padding-bottom: 5px;
    font-size: 1.1rem;
    font-weight: 600;
}

.howItworks .rightPop .sides .tail {
    font-size: 0.93rem;
    color: rgba(0, 0, 0, 0.808);
}

.faq-section {
    background-color: #2e6b66;
    color: #ffffff;
    margin-top: 100px;
    padding: 6rem 0;
}

.faq-container {
    padding: 0 12rem;
    width: 95%;
    margin: auto;
    box-sizing: border-box;
}

.faq-title {
    font-size: 2.5rem;
    text-align: center;
    padding-bottom: 1rem;
    font-weight: 600;
}

.faq-sub {
    color: rgba(255, 255, 255, 0.863);
    text-align: center;
    padding-bottom: 3rem;
    font-size: 1.2rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.25s ease;
}

.faq-item details {
    background-color: #3d8276;
    border-radius: 8px;
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    font-weight: 600;
    color: #ffffff;
    font-size: 1.05rem;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
    user-select: none;
    background-color: transparent;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "▾";
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    transition: transform 0.2s ease;
}

.faq-item details[open] {
    background-color: transparent !important; 
}

.faq-item:has(details[open]) .faq-card {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.faq-item details[open] summary {
    color: #113b2f !important;
    border-bottom: 1px solid #f1f5f9;
}

.faq-item details[open] summary::after {
    content: "▴";
    color: #113b2f !important;
}

.faq-content {
    padding: 20px 24px 24px 24px;
    background-color: transparent;
}

.faq-content p {
    margin: 0;
    color: #475569 !important;
    line-height: 1.65;
    font-size: 0.98rem;
}

.pricing {
    width: 95%;
    margin: auto;
    padding: 100px 12rem 0px 12rem; 
    box-sizing: border-box;
}

.pricing-header {
  text-align: center;
  margin-bottom: 48px;
}

.pricing-header h2 {
  color: #1a1a1a;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.pricing-header p {
  color: rgba(0, 0, 0, 0.808);
  font-size: 1.2rem;
  line-height: 1.5;
}

.pricing-wrapper {
  display: flex;
  gap: 32px;
}

.pricing-left {
  flex: 1;
  background: #ffffff;
  border: 2px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.plans-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.plan-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 22px;
  background: #f9fafb;
  border-radius: 14px;
  border: 1px solid #f1f5f9;
  box-sizing: border-box;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.plan-item h4 {
  font-size: 0.85rem;
  font-weight: bold;
  color: #452b1f71;
  margin: 0;
  padding: 0;
}

.plan-item .save-tag {
  font-size: 0.75rem;
  color: #452b1f57;
  margin: 0;
  padding: 0;
}

.plan-item strong {
  color: #452b1f71;
  font-size: 1.0rem;
  font-weight: bold;
  margin: 0;
  padding: 0;
}

.plan-item.active {
  background: linear-gradient(135deg, #2e6b66 0%, #1a3f3b 100%) !important;
  border-color: #2e6b66 !important;
  padding: 18px 22px !important; 
  box-shadow: 0 8px 24px rgba(46, 107, 102, 0.2);
}

.plan-item.active h4 { color: #ffffff !important; }
.plan-item.active .save-tag { color: rgba(255, 255, 255, 0.75) !important; }
.plan-item.active strong { color: #ffffff !important; }

.plan-item.disabled {
  opacity: 0.9;
}

.overlay-badge {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background: #0000009d;
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.choose-btn {
  width: 100%;
  padding: 12px 16px;
  border: none;
  background: linear-gradient(135deg, #2e6b66 0%, #1a3f3b 100%) !important;
  color: #ffffff;
  border-radius: 12px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.1s ease;
}

.choose-btn:hover {
  background: #163531;
}

.pricing-right {
  flex: 1;
}

.features-box {
  background: #f9fafb;
  padding: 28px;
  border-radius: 16px;
  border: 2px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.features-box h4 {
  color: #1a1a1a;
  font-size: 1.15rem;
  margin: 0 0 30px 0;
}

.features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.features li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #4b5563;
  font-size: 0.95rem;
  font-weight: 500;
  padding-bottom: 10px;
}

.feature-checkmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: #2e6b66;
  color: #ffffff;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.footer {
    background-color: #2e6b66;
    color: #F5F1E8;
    padding: 4rem 2rem 1.5rem 2rem;
    margin-top: 100px;
}

.footer-content {
    width: 95%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 2.2rem;
}

.footer-content .leftSide {
    width: 45%;
}

.footer-section .logos {
    align-items: center;
}

.footer-section .marix {
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fcf8f4;
    font-size: 1.1rem;
    font-weight: 700;
    padding-bottom: 15px;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 700;
    padding-bottom: 15px;
}

.footer-content .rightSide {
    /* width: 40%; */
    display: flex;
    gap: 10rem;
}

.footer-section p {
    color: rgba(245, 241, 232, 0.8);
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(245, 241, 232, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-section a:hover {
    color: #F5F1E8;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(245, 241, 232, 0.2);
    color: rgba(245, 241, 232, 0.7);
    font-size: 0.9rem;
}

.mediaNav {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    /* min-height: auto !important; */
    /* overflow-y: auto; */
    background-color: white !important;
    z-index: 1000 !important;
    transform: translateX(100%) !important; 
    transition: transform 0.5s ease !important;
    visibility: hidden;
    pointer-events: none;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
}

.mediaNav.active {
    transform: translateX(0) !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.mediaNav .upper {
    width: 80% !important;
    margin: 0 auto 0px auto !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.mediaNav .upper img {
    width: 60px !important;
    height: 60px !important;
    display: block !important;
}

.mediaNav .nav-close {
    font-size: 18px !important;
    color: rgba(0, 0, 0, 0.700) !important;
    cursor: pointer !important;
    display: inline-block !important;
}

.mediaNavlinks {
    width: 95% !important;
    margin: 0 auto !important;
    border-top: 1px solid rgba(0, 0, 0, 0.438) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.438) !important;
    padding: 30px 0 40px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
}

.mediaNavlinks p {
    color: rgba(0, 0, 0, 0.900) !important;
    padding-bottom: 25px !important;
    margin: 0 !important;
}

.mediaNav .foo {
    width: 95% !important;
    margin: 0 auto !important;
    padding-top: 30px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
}

.mediaNav a {
    text-decoration: none !important;
    color: rgba(0, 0, 0, 0.900) !important;
}

.mediaNav .foo p {
    padding-bottom: 25px !important;
    margin: 0 !important;
}

.modal {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.685);
    display: none !important; /* Forces layout tracking rule default state hidden */
    justify-content: center;
    align-items: center;
    z-index: 100;
    padding: 20px;
}

/* Open state: safely uses !important to maintain priority */
.modal.active {
    display: flex !important;
}

.modal .modal-content {
    position: relative;
    background-color: white;
    color: black;
    padding: 30px 24px;
    border-radius: 16px;
    width: 100%;
    max-width: 420px; /* Kept compact and responsive */
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.modal-content .title {
    color: #1a1a1a;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.modal .modalMessage {
    color: #4b5563;
    padding-bottom: 24px;
    font-size: 14px;
    line-height: 1.6;
}

/* Premium WhatsApp Link Button */
.modal-content .join-btn {
    display: block;
    background: linear-gradient(135deg, #2e6b66 0%, #1a3f3b 100%);
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 4px 12px rgba(46, 107, 102, 0.2);
}

.modal-content .join-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(46, 107, 102, 0.3);
}

.modal .close {
    position: absolute;
    top: 16px;
    right: 18px;
    font-size: 14px;
    color: #9ca3af;
    cursor: pointer;
    transition: color 0.15s ease;
}

.modal .close:hover {
    color: #374151;
}

#page-loader {
    position: fixed;
    top: 0; 
    left: 0;
    width: 100vw; 
    min-height: 100dvh;
    background: #fcf8f4;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.loader-logo-container img.logo-pulse {
    width: 90px;
    height: auto;
    display: block;
    animation: premiumBlurPulse 2s ease-in-out infinite; 
}

@keyframes premiumBlurPulse {
    0%, 100% {
        transform: scale(0.92);
        filter: blur(0px);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.08);
        filter: blur(3px);
        opacity: 1;
    }
}

@media (hover: hover) {
    button:hover {
        background-color: transparent;
    }
}
/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {

    .nav-menu {
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .floating-elements {
        display: none;
    }

    .howItworks {
        padding-top: 40px;
    }

    .howItworks .lottie {
        width: 350px;
        height: 350px;
    }

    .faq-container {
        padding: 0 2rem;
    }

    .pricing {
        padding: 0px 2rem 80px 2rem;
    }

    .footer-content .leftSide {
        width: 52%;
    }

    .footer-content .rightSide {
        gap: 6rem;
    }
}

@media (max-width: 912px) {
    .hero-text {
        width: 52%;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
    }

    .nav-menu li {
        display: none;
    }

    .nav-btn {
        display: none;
    }

    .navbar .bars {
        display: block;
    }

    .hero-content {
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .feature-section {
        padding: 3.5rem 0;
    }

    .feature-container {
        padding: 0 1.5rem;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 25px;
    }

    .feature-title {
        font-size: 1.85rem;
    }

    .feature-subtitle {
        font-size: 1rem;
    }

    .howitworks-section {
        padding: 80px 1.5rem 0px 1.5rem;
    }

    .two-title .hwTitle {
        font-size: 1.85rem;
    }

    .two-title .hwSubtitle {
        font-size: 1rem;
    }

    .howItworks {
        flex-direction: column;
    }

    .howItworks .leftImage {
        width: 100%;
        order: 2;
    }

    .howItworks .rightPop {
        order: 1;
        width: 100%;
    }

    .howItworks .lottie {
        width: 300px;
        height: 300px;
    }

    .faq-section {
        padding: 3.5rem 0;
    }

    .faq-container {
        padding: 0 1.5rem;
    }

    .faq-title {
        font-size: 1.85rem;
    }

    .faq-sub {
        font-size: 1rem;
    }

    .faq-item summary {
        padding: 16px 18px;
        font-size: 0.95rem;
    }

    .faq-content {
        padding: 16px 18px 20px 18px;
    }
    
    .faq-content p {
        font-size: 0.9rem;
    }

    .pricing {
        padding: 80px 1.5rem 0px 1.5rem;
    }
    
    .pricing-wrapper {
        flex-direction: column;
        gap: 24px;
    }

    .pricing-header h2 {
        font-size: 1.85rem;
    }

    .pricing-header p {
        font-size: 1rem;
    }

    .overlay-badge {
        position: static;
        transform: none;
        display: inline-block;
        width: fit-content;
        margin-top: 8px;
        margin-bottom: 12px;
    }
    
    .plan-item {
        padding: 12px 18px;
    }

    .footer {
        padding: 4rem 1.5rem 1.5rem 1.5rem;
        margin-top: 80px;
    }

    .footer-content {
        display: block;
        margin: auto;
        justify-content: space-between;
        margin-bottom: 2.2rem;
    }

    .footer-content .leftSide {
        width: 100%;
    }

    .footer-content .rightSide {
        width: 100%;
        padding-top: 50px;
        gap: 15rem;
    }

}

@media (max-width: 430px) {

    .navbar {
        padding: 1rem 1rem;
    }

    .hero-content {
        padding: 0 1rem;
        display: block;
    }

    .hero-text {
        width: 100%;
    }

    .hero-anime {
        width: 100%;
    }

    .hero-title {
        width: 100%;
        font-size: 2.3rem;
    }

    .hero-subtitle {
        width: 100%;
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .explore {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        text-decoration: none;
    }

    .hero-buttons .btn {
        padding: 0.9rem 1rem;
        font-size: 16px;
    }

    .feature-container {
        padding: 0 1rem;
    }

    .howitworks-section {
        padding: 80px 1rem 0px 1rem;
    }

    .howItworks .lottie {
        width: 300px;
        height: 300px;
    }

    .howItworks .rightPop {
        width: 100%;
    }

    .buy-sell {
        flex-direction: column;
        gap: 15px;
        justify-content: center;
        margin-bottom: 25px;
    }

    .howItworks .lottie {
        width: 250px;
        height: 250px;
    }

    .faq-container {
        padding: 0 1rem;
    }

    .pricing {
        padding: 80px 1rem 0px 1rem;
    }

    .footer {
        padding: 4rem 1rem 1.5rem 1rem;
    }

    .footer-content {
        display: block;
    }

    .footer-content .leftSide {
        width: 100%;
    }

    .footer-content .rightSide {
        flex-direction: column;
        width: 100%;
        padding-top: 70px;
        gap: 3rem;
    }

    .footer-bottom {
        font-size: 0.7rem;
    }

    .mediaNav {
        padding: 20px 1rem;
    }
}