/* Show gift image inside rectangle-82 only on mobile, hide outside. */
.gift-image-mobile {
  display: none;
}
.gift-image-desktop {
  display: block;
}

@media (max-width: 1200px) {
  .gift-image-mobile {
    position: relative !important;
    display: block !important;
    max-width: 220px;
    width: 100%;
    height: auto;
    margin: -50px !important;
  }
  .gift-image-desktop {
    display: none;
  }
}
/* Responsive visibility for menus */
@media (min-width: 901px) {
  .mobile-menu-toggle,
  .mobile-menu-overlay,
  .mobile-nav {
    display: none !important;
  }
}
@media (max-width: 900px) {
  .header-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
  .mobile-menu-overlay {
    display: none !important;
  }
  .mobile-menu-overlay.active {
    display: block !important;
  }
  .mobile-nav {
    display: none !important;
  }
  .mobile-nav.active {
    display: block !important;
  }
}
/* Modern Mobile Menu Styles */
@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: flex;
    background: none;
    border: none;
    font-size: 2rem;
    color: #4b4b4b;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    z-index: 12001;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: background 0.2s;
  }
  .mobile-menu-toggle:focus {
    outline: 2px solid #ffd369;
  }
  .mobile-menu-toggle .hamburger {
    display: inline-block;
    width: 28px;
    height: 3px;
    background: #ffd369;
    border-radius: 2px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 2, 0.3, 1);
  }
  .mobile-menu-toggle .hamburger::before,
  .mobile-menu-toggle .hamburger::after {
    content: "";
    position: absolute;
    left: 0;
    width: 28px;
    height: 3px;
    background: #ffd369;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 2, 0.3, 1);
  }
  .mobile-menu-toggle .hamburger::before {
    top: -9px;
  }
  .mobile-menu-toggle .hamburger::after {
    top: 9px;
  }
  .mobile-menu-toggle.active .hamburger {
    background: transparent;
  }
  .mobile-menu-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
  }
  .mobile-menu-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
  }
  /* Only keep one set of .mobile-nav and .mobile-menu-overlay rules here, as above */
  .mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
  }
  .mobile-nav-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffd369;
  }
  .mobile-nav-close {
    background: none;
    border: none;
    font-size: 2.2rem;
    color: #4b4b4b;
    cursor: pointer;
    line-height: 1;
    padding: 0 0.5rem;
    border-radius: 8px;
    transition: background 0.2s;
  }
  .mobile-nav-close:hover {
    background: #f8f9fa;
  }
  .mobile-nav a {
    display: block;
    padding: 1rem 0;
    text-decoration: none;
    color: #4b4b4b;
    font-weight: 700;
    font-size: 1.1rem;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.2s;
  }
  .mobile-nav a:last-child {
    border-bottom: none;
  }
  .mobile-nav a:hover {
    color: #ffd369;
  }
  .mobile-download-btn {
    background: #ffd369;
    color: #4b4b4b;
    font-weight: 700;
    margin-top: 1.5rem;
    text-align: center;
    border-radius: 8px;
    padding: 1rem 0;
    display: block;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: background 0.2s;
  }
  .mobile-download-btn:hover {
    background: #ffc800;
    color: #4b4b4b;
  }
}
.primary-color {
  background-color: #ffd369;
}

@font-face {
  font-family: "Vazirmatn";
  src: url("fonts/Vazirmatn[wght].woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Vazirmatn";
  src: url("fonts/Vazirmatn-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Vazirmatn";
  src: url("fonts/Vazirmatn-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Vazirmatn", "Tahoma", "Arial", sans-serif;
  line-height: 1.6;
  color: #4B4B4B;
  background-color: #fafafa;
  direction: rtl;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

/* Ensure all elements inherit the font */
* {
  font-family: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.padding-60 {
  padding: 0 60px;
}

/* Header */
.header {
  position: fixed; /* Always fixed to prevent jumping */
  top: 10px; /* Start with the same margin as the scrolled state */
  left: 50%; /* Used for centering */
  transform: translateX(-50%); /* Center the header */
  width: 100%;
  max-width: 100%; /* Start at full width */
  z-index: 1000;
  background: transparent;
  box-shadow: none;
  border: 1.5px solid transparent; /* Start with a transparent border */
  border-radius: 18px;
  backdrop-filter: blur(0px) saturate(100%);
  -webkit-backdrop-filter: blur(0px) saturate(100%);

  /* A faster, smoother transition that applies to all changing properties */
  transition: all 0.4s ease-in-out;
}

.header.scrolled {
  position: fixed;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18),
    0 1.5px 8px 0 rgba(0, 0, 0, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 18px;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  margin: 10px auto 0 auto;
  max-width: 88vw;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  margin: 0 auto;
  max-width: 1236px;
}

.header-left{
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.header-left .download-btn {
  background: #FFD369;
  color: #4B4B4B;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.header-left .download-btn:hover {
  background: #ffc800;
  transform: translateY(-2px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
}

.logo:hover {
  text-decoration: none;
  color: inherit;
}

.logo:visited {
  text-decoration: none;
  color: inherit;
}

.logo:focus {
  text-decoration: none;
  color: inherit;
  outline: none;
}

.logo-image {
  width: 84px;
  height: 84px;
  object-fit: contain;
}

.logo-text {
  font-size: 32px;
  font-weight: bold;
  font-weight: 700;
  color: #ffd369;
}

.header-nav {
  display: flex;
  gap: 2rem;
}

.header-nav a {
  text-decoration: none;
  color: #4b4b4b;
  font-weight: 700;
  font-size: 14px;
}

.header-nav a:hover {
  color: #FFD369;
}

/* Hero Section */
.hero {
  /* padding: 120px 0 80px; */
  padding-top: 120px;
  background: #fafafa;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-title {
  font-size: 2.6rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-title .highlight {
  color: #FFD369;
  font-weight: bold;
}

.hero-description {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.download-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.download-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Vazirmatn", "Tahoma", "Arial", sans-serif;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  width: 156px;
  height: 48px;
  justify-content: center;
  white-space: nowrap;
  overflow: hidden;
}

.download-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.bazar-icon {
  width: 62px;
  height: auto;
  object-fit: contain;
}

.mayket-icon {
  width: 90px;
  height: auto;
  object-fit: contain;
}

.download-btn.primary {
  background: #ffd369;
  color: #4b4b4b;
}

.download-btn.secondary {
  background: #1b1c1d;
  color: #feffff;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3),
    0px 1px 3px 1px rgba(0, 0, 0, 0.15);
  width: 133px;
  height: 48px;
  font-size: 11px;
  line-height: 14px;
}

.download-btn.large {
  width: 100%;
  max-width: 180px;
  height: 56px;
  font-size: 1.1rem;
  font-weight: 700;
  background: #4b4b4b;
  color: #ffd369;
  border: none;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-container {
  position: relative;
  z-index: 2;
}

.phone-container img {
  width: 643px;
  height: auto;
  max-width: 100%;
}

.phone-mockup {
  width: 280px;
  height: 560px;
  background: #000;
  border-radius: 30px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: rotate(-15deg);
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.app-dashboard {
  padding: 20px;
  height: 100%;
}

.chart-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.bar-chart,
.donut-chart {
  background: #f0f0f0;
  border-radius: 10px;
  height: 120px;
}

.hero-circle {
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  z-index: 1;
}

/* Features Section */
.features {
  padding: 120px 0 80px;
  background: #f8f9fa;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  color: #4b4b4b;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #4b4b4b;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: #777777;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 900px) {
  .options-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .options-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.feature-card {
  background: #fffccc;
  padding: 2rem;
  border-radius: 11px;
  transition: transform 0.3s ease;
  align-content: center;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: #FFD369;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon i {
  font-size: 1.5rem;
  color: #4B4B4B;
}

.feature-card h3 {
  font-size: 1.3rem;
  color: #4B4B4B;
  margin-bottom: 1rem;
}

.feature-card p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.feature-visual {
  margin-bottom: 1.5rem;
  justify-self: center;
  text-align: center;
}

.offline {
  max-width: 297px;
  height: auto;
}

.card-header {
  font-weight: 700;
  font-size: 24px;
  line-height: 65px;
  justify-self: center;
}

/* Budget Cards */
.budget-card {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.budget-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.progress-fill {
  height: 100%;
  background: #FFD369;
  border-radius: 4px;
  transition: width 0.3s ease;
}

.budget-remaining {
  font-size: 0.9rem;
  color: #666;
}

/* Account Cards */
.account-cards {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.account-card {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.account-balance {
  margin-right: auto;
  font-weight: 500;
  color: #4B4B4B;
}

/* Category Cards */
.category-cards {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.category-card {
  background: #f8f9fa;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

/* Search Container */
.search-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.search-bar {
  position: relative;
  display: flex;
  align-items: center;
}

.search-bar input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
}

.search-bar i {
  position: absolute;
  right: 1rem;
  color: #666;
}

.transaction-examples {
  display: flex;
  gap: 0.5rem;
}

.transaction-card {
  background: #f8f9fa;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

/* CTA Section */
.cta {
  padding: 80px 0;
  position: relative;
}

.cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.cta-text h2 {
  font-size: 2.5rem;
  color: #4b4b4b;
  margin-bottom: 1.5rem;
}

.cta-text p {
  font-size: 1.1rem;
  color: #777777;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-text {
  z-index: 2;
  color: #4b4b4b;
  padding: 0 3rem;
  white-space: nowrap;
}

.cta-visual .phone-mockup {
  transform: rotate(15deg);
}

.phone-screen.festive {
  background: linear-gradient(135deg, #FFD369, #ffa500);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gift-screen {
  text-align: center;
  color: #fff;
}

.logo-gift {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.stars {
  margin-bottom: 1rem;
}

.stars i {
  font-size: 1.5rem;
  margin: 0 0.25rem;
  animation: twinkle 2s infinite;
}

.gift-box {
  font-size: 3rem;
  animation: bounce 2s infinite;
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* FAQ Section */
.faq {
  padding: 80px 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #f8f9fa;
  border-radius: 15px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #e9ecef;
}

.faq-question span {
  font-weight: 500;
  color: #4B4B4B;
}

.faq-question i {
  color: #FFD369;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: #666;
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Contact Section - Box above footer */
.contact-box {
  position: relative;
  background: #fff;
  margin: 50px auto -30px;
  max-width: 760px;
  border-radius: 15px;
  padding: 3rem 2rem;
  text-align: center;
  z-index: 10;
}

.contact-header {
  margin-bottom: 2rem;
}

.support-icon {
  margin-bottom: 1.5rem;
}

.support-icon i {
  font-size: 3rem;
  color: #4b4b4b;
}

.contact-header h2 {
  font-size: 20px;
  color: #4b4b4b;
  margin-bottom: 1rem;
  font-weight: 700;
}

.contact-header p {
  font-size: 13px;
  color: #4b4b4b;
  margin-bottom: 0;
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 11px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: #fff;
  font-family: "Vazirmatn", "Tahoma", "Arial", sans-serif;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #ffd369;
}

.form-textarea {
  height: 120px;
  resize: vertical;
}

.submit-btn {
  background: #ffd369;
  color: #4d4d4d;
  border: none;
  padding: 1rem 4rem;
  border-radius: 11px;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 auto;
  font-family: "Vazirmatn", "Tahoma", "Arial", sans-serif;
}

.submit-btn:hover {
  background: #ffc800;
}

/* Footer */
.footer-top {
  background: #ffd369;
  padding: 2rem 0 3rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.footer-logo .logo-image {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.footer-logo .logo-text {
  font-size: 28px;
  font-weight: 700;
  color: #4B4B4B;
}

.footer-description {
  color: #777777;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 300px;
  white-space: nowrap;
}
.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #4B4B4B;
  margin-bottom: 1.5rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav a {
  text-decoration: none;
  color: #555;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #4B4B4B;
}

.social-icons {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  .text {
    color: #7a7a7a;
    display: flex;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
  }
}

.social-icon {
  width: 45px;
  height: 45px;
  color: #7a7a7a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.social-icon:hover {
  transform: translateY(-2px);
}

.footer-bottom {
  background: #fff;
  padding: 1.5rem 0;
  border-top: 1px solid #e0e0e0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  text-decoration: none;
  color: #666;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #4B4B4B;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #4b4b4b;
  cursor: pointer;
  padding: 0.5rem;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #f0f0f0;
}

/* Mobile nav as full-screen overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 12002;
  max-width: 100vw;
  max-height: 100vh;
  overflow-y: auto;
  padding: 2.5rem 1.5rem 2rem 1.5rem;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 1rem 2rem;
  text-decoration: none;
  color: #4b4b4b;
  font-weight: 700;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-nav a:hover {
  background: #f8f9fa;
  color: #FFD369;
}

.mobile-nav .mobile-download-btn {
  background: #ffd369;
  color: #4b4b4b;
  font-weight: 700;
  margin-top: 0.5rem;
  text-align: center;
  border-radius: 8px;
}

.mobile-nav .mobile-download-btn:hover {
  background: #ffc800;
  color: #4b4b4b;
}

/* Responsive Design */
@media (max-width: 1110px) {
  .container {
    padding: 0 30px;
  }

  .hero-container {
    gap: 3rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .phone-container img {
    width: 500px;
  }

  /* Features Section */
  .features {
    padding: 80px 0 60px;
  }

  .features-grid {
    grid-template-columns: 2fr;
    gap: 1.5rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .card-header {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 1rem;
    justify-self: center;
  }

  .feature-visual img {
    max-width: 100%;
    height: auto;
  }

  /* CTA Section */
  .cta {
    padding: 60px 0;
    position: relative;
  }

  .rectangle-82 {
    height: auto !important;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 3rem 2rem;
    margin: 0 1rem;
    background: linear-gradient(135deg, #ffd369 0%, #ffc800 100%);
    box-shadow: 0 10px 30px rgba(255, 211, 105, 0.3);
    backdrop-filter: blur(10px);
  }

  .cta-text {
    padding: 0;
    white-space: normal;
    z-index: 3;
    max-width: 100%;
    width: 100%;
  }

  .cta-text h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
    font-weight: 700;
    line-height: 1.3;
  }

  .cta-text p {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
    line-height: 1.6;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-text .download-btn.large {
    width: 100%;
    max-width: 280px;
    height: 56px;
    font-size: 1.1rem;
    font-weight: 700;
    background: #4b4b4b;
    color: #ffd369;
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    margin: 0 auto;
  }

  .cta-text .download-btn.large:hover {
    transform: translateY(-2px);
  }

  .cta-text .download-btn.large:active {
    transform: translateY(0);
  }

  /* .gift-image {
    display: none;
  } */

  .vector-decoration,
  .vector-decoration-bottom {
    width: 150px;
    opacity: 0.3;
  }

  .vector-decoration {
    top: 10px;
    left: 10px;
  }

  .vector-decoration-bottom {
    bottom: 10px;
    right: 10px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .padding-60 {
    padding: 0 20px;
  }

  /* Header */
  .header {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
  .header-container {
    flex-direction: row;
    justify-content: space-between;
    padding: 0.5rem 0.75rem;
    min-height: 48px;
  }
  .logo img,
  .logo svg {
    height: 28px !important;
    max-width: 90px !important;
  }
  .logo {
    font-size: 1rem;
    gap: 0.25rem;
  }

  /* Removed header nav and mobile menu toggle overrides for mobile */

  /* Hero Section */
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
    padding: 2rem 0;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.3;
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }

  .download-buttons {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .download-btn {
    width: 140px;
    height: 44px;
    font-size: 14px;
  }

  .download-btn.secondary {
    width: 120px;
    height: 44px;
    font-size: 10px;
  }

  .phone-container img {
    width: 400px;
    max-width: 100%;
  }

  /* Features Section */
  .features {
    padding: 80px 0 60px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .card-header {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 1rem;
    justify-self: center;
  }

  .feature-visual img {
    max-width: 100%;
    height: auto;
  }

  /* CTA Section */
  .cta {
    padding: 60px 0;
    position: relative;
  }

  .rectangle-82 {
    height: auto !important;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 3rem 2rem;
    margin: 0 1rem;
    background: linear-gradient(135deg, #ffd369 0%, #ffc800 100%);
    box-shadow: 0 10px 30px rgba(255, 211, 105, 0.3);
    backdrop-filter: blur(10px);
  }

  .cta-text {
    padding: 0;
    white-space: normal;
    z-index: 3;
    max-width: 100%;
    width: 100%;
  }

  .cta-text h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
    font-weight: 700;
    line-height: 1.3;
  }

  .cta-text p {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
    line-height: 1.6;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-text .download-btn.large {
    width: 100%;
    max-width: 280px;
    height: 56px;
    font-size: 1.1rem;
    font-weight: 700;
    background: #4b4b4b;
    color: #ffd369;
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    margin: 0 auto;
  }

  .cta-text .download-btn.large:hover {
    transform: translateY(-2px);
  }

  .cta-text .download-btn.large:active {
    transform: translateY(0);
  }

  /* .gift-image {
    display: none;
  } */

  .vector-decoration,
  .vector-decoration-bottom {
    width: 150px;
    opacity: 0.3;
  }

  .vector-decoration {
    top: 10px;
    left: 10px;
  }

  .vector-decoration-bottom {
    bottom: 10px;
    right: 10px;
  }

  /* FAQ Section */
  .faq {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  /* Contact Section */
  .contact-box {
    margin: 30px 20px -30px;
    padding: 2rem 1.5rem;
  }

  .contact-header h2 {
    font-size: 1.6rem;
  }

  .contact-header p {
    font-size: 12px;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .footer-logo-section {
    align-items: center;
  }

  .footer-description {
    max-width: 100%;
    text-align: center;
    white-space: normal;
  }

  .social-icons {
    justify-content: center;
  }

  .social-icons .text {
    font-size: 12px;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-bottom-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .padding-60 {
    padding: 0 15px;
  }

  /* Header */
  .header-container {
    padding: 0.75rem 1rem;
  }

  .logo-image {
    width: 60px;
    height: 60px;
  }

  .logo-text {
    font-size: 24px;
  }

  /* Hero Section */
  .hero {
    padding: 80px 0 40px;
  }

  .hero-container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 1.6rem;
    line-height: 1.2;
  }

  .hero-description {
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }

  .download-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .download-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    height: 48px;
    font-size: 15px;
    min-height: 44px;
    touch-action: manipulation;
  }

  .download-btn.secondary {
    width: 100%;
    max-width: 280px;
    height: 48px;
    font-size: 12px;
    min-height: 44px;
    touch-action: manipulation;
  }

  .phone-container img {
    width: 300px;
  }

  /* Features Section */
  .features {
    padding: 60px 0 40px;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  .section-header p {
    font-size: 0.9rem;
  }

  .feature-card {
    padding: 1.25rem;
  }

  .card-header {
    font-size: 18px;
    line-height: 1.3;
    justify-self: center;
  }

  .feature-card p {
    font-size: 0.9rem;
  }

  /* CTA Section */
  .cta {
    padding: 40px 0;
  }

  .rectangle-82 {
    height: auto !important;
    min-height: 280px;
    margin: 0 15px;
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
  }

  .cta-text {
    padding: 0;
  }

  .cta-text h2 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    line-height: 1.2;
  }

  .cta-text p {
    font-size: 0.95rem;
    margin-bottom: 2.2rem;
    max-width: 95%;
  }

  .cta-text .download-btn.large {
    width: 100%;
    max-width: 260px;
    height: 52px;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
  }

  .vector-decoration,
  .vector-decoration-bottom {
    width: 120px;
    opacity: 0.25;
  }

  /* FAQ Section */
  .faq {
    padding: 40px 0;
  }

  .faq-question {
    padding: 1rem;
  }

  .faq-question span {
    font-size: 0.9rem;
  }

  .faq-answer {
    padding: 0 1rem 1rem;
  }

  .faq-answer p {
    font-size: 0.85rem;
  }

  /* Contact Section */
  .contact-box {
    margin: 20px 10px -20px;
    padding: 1.5rem 1rem;
  }

  .contact-header h2 {
    font-size: 1.4rem;
  }

  .contact-header p {
    font-size: 11px;
  }

  .support-icon i {
    font-size: 2.5rem;
  }

  .form-input,
  .form-textarea {
    padding: 0.75rem;
    font-size: 0.9rem;
    min-height: 44px;
    touch-action: manipulation;
  }

  .form-textarea {
    min-height: 100px;
  }

  .submit-btn {
    padding: 0.75rem 2rem;
    font-size: 1rem;
  }

  /* Footer */
  .footer-top {
    padding: 1.5rem 0 2rem;
  }

  .footer-logo .logo-image {
    width: 50px;
    height: 50px;
  }

  .footer-logo .logo-text {
    font-size: 24px;
  }

  .footer-description {
    font-size: 0.85rem;
  }

  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .social-icons {
    gap: 1.5rem;
  }

  .social-icons .text {
    font-size: 11px;
  }
}

@media (max-width: 360px) {
  .container {
    padding: 0 10px;
  }

  .hero-title {
    font-size: 1.4rem;
  }

  .hero-description {
    font-size: 0.85rem;
  }

  .download-btn {
    font-size: 14px;
    height: 44px;
    min-height: 44px;
  }

  .phone-container img {
    width: 250px;
  }

  .section-header h2 {
    font-size: 1.4rem;
  }

  .cta-text h2 {
    font-size: 1.3rem;
  }

  .contact-header h2 {
    font-size: 1.2rem;
  }

  .feature-card {
    padding: 1rem;
  }

  .card-header {
    font-size: 16px;
    justify-self: center;
  }

  .rectangle-82 {
    height: auto;
    min-height: 240px;
    margin: 0 8px;
    padding: 2rem 1.25rem;
    border-radius: 14px;
  }

  .cta-text h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

  .cta-text p {
    font-size: 0.9rem;
    margin-bottom: 1.8rem;
    max-width: 98%;
  }

  .cta-text .download-btn.large {
    width: 100%;
    max-width: 240px;
    height: 48px;
    font-size: 0.95rem;
    border-radius: 8px;
  }

  .vector-decoration,
  .vector-decoration-bottom {
    width: 100px;
    opacity: 0.2;
  }

  .contact-box {
    margin: 15px 5px -15px;
    padding: 1.25rem 0.75rem;
  }
}

/* Additional mobile optimizations */
@media (max-width: 320px) {
  .hero-title {
    font-size: 1.2rem;
  }

  .hero-description {
    font-size: 0.8rem;
  }

  .download-btn {
    font-size: 13px;
    padding: 0.5rem 1rem;
  }

  .phone-container img {
    width: 200px;
  }

  .section-header h2 {
    font-size: 1.2rem;
  }

  .cta-text h2 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }

  .cta-text p {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
  }

  .cta-text .download-btn.large {
    width: 100%;
    max-width: 220px;
    height: 44px;
    font-size: 0.9rem;
    border-radius: 6px;
  }

  .rectangle-82 {
    min-height: 200px;
    margin: 0 5px;
    padding: 1.5rem 1rem;
    border-radius: 12px;
  }

  .vector-decoration,
  .vector-decoration-bottom {
    width: 80px;
    opacity: 0.15;
  }

  .contact-header h2 {
    font-size: 1rem;
  }
}

/* Rectangle 82 */
.rectangle-82 {
  background: #ffd369;
  border-radius: 11px;
  height: 350px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Minimal and simple hover effect for all buttons */
button,
.download-btn {
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}

button:hover,
.download-btn:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.vector-decoration {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 341px;
  opacity: 50%;
  height: auto;
}

.vector-decoration-bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  width: 341px;
  height: auto;
  opacity: 50%;
  transform: rotate(180deg);
  z-index: 0;
}

.gift-image {
  position: absolute;
  z-index: 10;
  margin: -30.44rem 45rem 0px;
  max-width: 370px;
  width: 100%;
  height: auto;
}

.phone-image {
  bottom: 8rem;
  position: relative;
}

/* Pricing Plans */
.pricing {
  padding: 10rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.plan-card {
  background: #f7f7f7;
  border-radius: 16px;
  padding: 2rem 2rem;
  text-align: center;
  position: relative;
  border: 2px solid #e9e9e9;
}

.plan-badge {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -60px auto 10px;
  background: #e9e9e9;
  color: #4B4B4B;
  font-size: 1.4rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.plan-title {
  font-size: 1.8rem;
  color: #4b4b4b;
  margin: 0.5rem 0 0.75rem;
  font-weight: 800;
}

.plan-duration {
  color: #666;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

.plan-prices {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.plan-old-price {
  color: #9b9b9b;
  text-decoration: line-through;
  font-weight: 700;
}

.plan-price {
  color: #4b4b4b;
  font-size: 1.8rem;
  font-weight: 900;
}

/* Color accents per plan */
.plan-silver {
  border-color: #d6d6d6;
}
.plan-silver .plan-badge {
  background: #dcdcdc;
}

.plan-gold {
  border-color: #ffd369;
  box-shadow: 0 8px 24px rgba(255, 211, 105, 0.25);
}
.plan-gold .plan-badge {
  background: #ffd369;
}
.plan-gold .download-btn.primary {
  background: #ffd369;
  color: #4B4B4B;
}

.plan-bronze {
  border-color: #ffa85c;
}
.plan-bronze .plan-badge {
  background: #ffa85c;
}

@media (max-width: 992px) {
  .pricing {
    padding: 80px 0 60px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.about-section {
  margin: 5rem;
}

.about-title {
  color: #4b4b4b;
  font-weight: 700;
  line-height: 65px;
}

.about-text {
  color: #777777 !important;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}

.about-contact {
  color: #777777 !important;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}

.space {
  margin: 20px;
}

.line-height-48 {
  line-height: 48px;
}
