* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #2A9D8F;
  --primary-dark: #238B7E;
  --primary-light: #3DB4A6;
  --secondary: #264653;
  --accent: #8AC926;
  --text: #1a1a2e;
  --text-light: #6c6c80;
  --bg: #ffffff;
  --bg-alt: #f8fafa;
  --gradient: linear-gradient(135deg, #2A9D8F 0%, #264653 100%);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Language Switcher Dropdown */
.lang-switcher {
  position: relative;
  margin-left: 1rem;
}

.lang-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid #e5e7eb;
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s;
}

.lang-dropdown-btn:hover {
  border-color: var(--primary);
  background: rgba(42, 157, 143, 0.05);
}

.lang-dropdown-btn svg,
.lang-dropdown-btn .bi {
  width: 12px;
  height: 12px;
  font-size: 12px;
  line-height: 1;
  transition: transform 0.2s;
}

.lang-switcher.open .lang-dropdown-btn svg,
.lang-switcher.open .lang-dropdown-btn .bi {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  min-width: 140px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 1001;
  overflow: hidden;
}

.lang-switcher.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 14px;
  background: none;
  border: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: all 0.15s;
  text-align: left;
}

.lang-option:hover {
  background: rgba(42, 157, 143, 0.08);
}

.lang-option.active {
  background: rgba(42, 157, 143, 0.12);
  color: var(--primary);
}

.lang-option .lang-flag {
  font-size: 1.1rem;
}

.lang-option .lang-name {
  flex: 1;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

nav.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--secondary);
  text-decoration: none;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.nav-right {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-cta {
  background: var(--gradient);
  color: white !important;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(42, 157, 143, 0.3);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.mobile-actions {
  display: none;
  align-items: center;
  gap: 0.6rem;
}

.mobile-download-cta {
  display: none;
  background: var(--gradient);
  color: white !important;
  text-decoration: none;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.mobile-menu span {
  width: 25px;
  height: 3px;
  background: var(--secondary);
  border-radius: 3px;
  transition: all 0.3s;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(circle, rgba(42, 157, 143, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(42, 157, 143, 0.1);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--secondary);
}

.hero h1 span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 10px 30px rgba(42, 157, 143, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(42, 157, 143, 0.4);
}

.btn-secondary {
  background: white;
  color: var(--secondary);
  border: 2px solid rgba(38, 70, 83, 0.1);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-image .phone-mockup {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: block;
  animation: float 6s ease-in-out infinite;
}

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

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.stat {
  text-align: left;
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* Features Section */
.features {
  padding: 8rem 2rem;
  background: var(--bg);
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-label {
  display: inline-block;
  background: rgba(42, 157, 143, 0.1);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--bg-alt);
  padding: 2.5rem;
  border-radius: 24px;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.feature-card:hover {
  background: white;
  border-color: rgba(42, 157, 143, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.7;
}

/* How It Works */
.how-it-works {
  padding: 8rem 2rem;
  background: var(--bg-alt);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  background: white;
  border: 3px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}

.step h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}

.step p {
  color: var(--text-light);
}

/* Integrations */
.integrations {
  padding: 5rem 2rem;
  background: var(--bg);
}

.integration-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.integration-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  background: var(--bg-alt);
  border-radius: 20px;
  min-width: 160px;
  transition: all 0.3s;
}

.integration-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.integration-icon {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.integration-icon svg {
  width: 32px;
  height: 32px;
}

.integration-icon img {
  max-width: 36px;
  max-height: 32px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.integration-item span {
  font-weight: 600;
  color: var(--secondary);
}

/* Pricing */
.pricing {
  padding: 8rem 2rem;
  background: var(--secondary);
  color: white;
}

.pricing .section-header h2,
.pricing .section-header p {
  color: white;
}

.pricing .section-label {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent);
}

/* Pricing Table Styles */
.pricing-table-wrapper {
  overflow-x: auto;
  margin: 0 -1rem;
  padding: 0 1rem;
}

.pricing-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  overflow: hidden;
}

.pricing-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-row:not(.header):hover {
  background: rgba(255, 255, 255, 0.05);
}

.pricing-row.featured {
  background: rgba(138, 201, 38, 0.15);
}

.pricing-row.featured:hover {
  background: rgba(138, 201, 38, 0.2);
}

.pricing-row.header {
  background: rgba(255, 255, 255, 0.05);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.7);
}

.pricing-cell {
  padding: 1.25rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.pricing-cell.plan-name {
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 0.25rem;
}

.plan-title {
  font-weight: 700;
  font-size: 1.125rem;
}

.plan-desc {
  font-size: 0.8rem;
  opacity: 0.7;
}

.plan-desc.popular {
  background: var(--accent);
  color: var(--secondary);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-weight: 600;
  opacity: 1;
}

.price-cell {
  flex-direction: column;
  gap: 0;
}

.price-value {
  font-size: 1.5rem;
  font-weight: 800;
}

.price-period {
  font-size: 0.75rem;
  opacity: 0.7;
}

.btn-table {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-table:hover {
  background: white;
  color: var(--secondary);
}

.btn-table.featured {
  background: var(--accent);
  color: var(--secondary);
  border-color: var(--accent);
}

.btn-table.featured:hover {
  background: white;
  border-color: white;
}

.pricing-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.95rem;
  opacity: 0.8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .pricing-table {
    min-width: 600px;
  }
  
  .pricing-row {
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  }
  
  .pricing-cell {
    padding: 1rem 0.5rem;
    font-size: 0.9rem;
  }
  
  .price-value {
    font-size: 1.25rem;
  }
  
  .plan-title {
    font-size: 1rem;
  }
}

/* Testimonials */
.testimonials {
  padding: 5rem 2rem;
  background: var(--bg);
}

.testimonial-grid {
  display: flex;
  gap: 2rem;
  overflow-x: scroll !important;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
}

.testimonial-grid::-webkit-scrollbar {
  height: 8px;
  display: block !important;
}

.testimonial-grid::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 4px;
}

.testimonial-grid::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
  min-width: 50px;
}

.testimonial-grid::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

.testimonial-card {
  background: white;
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid #e5e7eb;
  min-width: 350px;
  max-width: 400px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .testimonial-grid {
    gap: 1rem;
  }

  .testimonial-card {
    padding: 1.35rem;
    border-radius: 18px;
    min-width: 285px;
    max-width: 300px;
  }

  .testimonial-stars {
    font-size: 1.05rem;
    margin-bottom: 0.7rem;
  }

  .testimonial-content {
    font-size: 0.98rem;
    line-height: 1.55;
    margin-bottom: 1rem;
  }

  .testimonial-author {
    gap: 0.75rem;
  }

  .testimonial-avatar {
    width: 42px;
    height: 42px;
    font-size: 1.05rem;
  }

  .testimonial-info h4 {
    font-size: 1.05rem;
  }

  .testimonial-info span {
    font-size: 0.8rem;
  }
}

.testimonial-content {
  font-size: 1.125rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 1.25rem;
}

.testimonial-info h4 {
  font-weight: 600;
  color: var(--secondary);
}

.testimonial-info span {
  font-size: 0.875rem;
  color: var(--text-light);
}

.testimonial-stars {
  color: #ffc107;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

/* CTA Section */
.cta {
  padding: 8rem 2rem;
  background: var(--gradient);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

/* Flying Parcels Animation */
.flying-parcels {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.parcel {
  position: absolute;
  opacity: 0.15;
  animation: floatParcel 20s ease-in-out infinite;
}

.parcel svg {
  width: 100%;
  height: 100%;
}

.parcel-1 {
  width: 60px;
  height: 60px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
  animation-duration: 18s;
}

.parcel-2 {
  width: 45px;
  height: 45px;
  top: 60%;
  left: 10%;
  animation-delay: -3s;
  animation-duration: 22s;
}

.parcel-3 {
  width: 70px;
  height: 70px;
  top: 30%;
  right: 8%;
  animation-delay: -5s;
  animation-duration: 19s;
}

.parcel-4 {
  width: 40px;
  height: 40px;
  top: 75%;
  right: 15%;
  animation-delay: -8s;
  animation-duration: 24s;
}

.parcel-5 {
  width: 55px;
  height: 55px;
  top: 15%;
  left: 25%;
  animation-delay: -2s;
  animation-duration: 21s;
}

.parcel-6 {
  width: 50px;
  height: 50px;
  top: 50%;
  right: 25%;
  animation-delay: -10s;
  animation-duration: 17s;
}

.parcel-7 {
  width: 35px;
  height: 35px;
  top: 85%;
  left: 40%;
  animation-delay: -7s;
  animation-duration: 23s;
}

.parcel-8 {
  width: 65px;
  height: 65px;
  top: 5%;
  right: 30%;
  animation-delay: -12s;
  animation-duration: 20s;
}

@keyframes floatParcel {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(30px, -20px) rotate(5deg);
  }
  50% {
    transform: translate(15px, 25px) rotate(-3deg);
  }
  75% {
    transform: translate(-20px, 10px) rotate(4deg);
  }
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.cta p {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
}

.cta .btn-primary {
  background: white;
  color: var(--primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta .btn-primary.btn-soon {
  opacity: 0.72;
  cursor: default;
  pointer-events: none;
}

.cta .btn-primary.btn-soon:hover {
  transform: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
  background: var(--secondary);
  color: white;
  padding: 4rem 2rem 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .logo {
  color: white;
  margin-bottom: 1rem;
}

.footer-brand p {
  opacity: 0.7;
  line-height: 1.7;
}

.footer-links h4 {
  font-weight: 600;
  margin-bottom: 1.5rem;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  opacity: 0.7;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .lang-switcher {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.1);
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .lang-dropdown {
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(-10px);
  }
  
  .lang-switcher.open .lang-dropdown {
    transform: translateX(-50%) translateY(0);
  }

  .mobile-menu {
    display: flex;
  }

  .mobile-actions {
    display: flex;
  }

  .mobile-download-cta {
    display: inline-flex;
    align-items: center;
  }

  .nav-download-item {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0.85rem 1rem;
  }

  .logo {
    font-size: 1.2rem;
  }

  .logo img {
    width: 34px;
    height: 34px;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content {
    order: 1;
  }
  
  .hero-image {
    order: 0;
    margin-bottom: 2rem;
  }
  
  .hero-image .phone-mockup {
    max-width: 280px;
  }
  
  .hero p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1.25rem;
  }
  
  .footer-brand {
    max-width: 100%;
    grid-column: 1 / -1;
    text-align: center;
  }
  
  .footer-brand .logo {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  
  .stat {
    text-align: center;
  }
  
  .integration-logos {
    gap: 1rem;
  }
  
  .integration-item {
    min-width: 140px;
    padding: 1.5rem;
  }
}

/* Animations on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Phone Mockup SVG */
.phone-container {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}

.phone-frame {
  width: 100%;
}

/* Pricing Page Styles */
.pricing-page {
  min-height: 100vh;
  padding-top: 80px;
}

.pricing-hero {
  text-align: center;
  padding: 60px 0 40px;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient);
  color: white;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.pricing-badge svg {
  width: 16px;
  height: 16px;
}

.pricing-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.pricing-hero p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.pricing-cards-section {
  padding: 40px 0 60px;
  overflow: hidden;
  position: relative;
}

.pricing-cards-section::before,
.pricing-cards-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  pointer-events: none;
  z-index: 1;
}

.pricing-cards-section::before {
  left: 0;
  background: linear-gradient(to right, white, transparent);
}

.pricing-cards-section::after {
  right: 0;
  background: linear-gradient(to left, white, transparent);
}

@media (min-width: 1024px) {
  .pricing-cards-section::before,
  .pricing-cards-section::after {
    width: 64px;
  }

  .pricing-cards-section::before {
    background: linear-gradient(to right, #fff 18%, rgba(255, 255, 255, 0));
  }

  .pricing-cards-section::after {
    background: linear-gradient(to left, #fff 18%, rgba(255, 255, 255, 0));
  }

  .pricing-cards-grid {
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 56px, #000 calc(100% - 56px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 56px, #000 calc(100% - 56px), transparent 100%);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }
}

.pricing-cards-grid {
  display: flex;
  gap: 16px;
  overflow-x: scroll !important;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 20px 0;
}

.pricing-cards-grid::-webkit-scrollbar {
  height: 8px;
  display: block !important;
}

.pricing-cards-grid::-webkit-scrollbar-track {
  background: #e5e7eb;
  border-radius: 4px;
  margin: 0 24px;
}

.pricing-cards-grid::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
  min-width: 50px;
}

.pricing-cards-grid::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

.pricing-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 240px;
  max-width: 240px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .pricing-cards-grid {
    gap: 12px;
  }

  .pricing-card {
    padding: 16px;
    border-radius: 14px;
    min-width: 200px;
    max-width: 200px;
  }

  .card-header {
    margin-bottom: 10px;
  }

  .card-plan-name {
    font-size: 16px;
  }

  .card-plan-desc {
    font-size: 11px;
  }

  .card-price {
    margin-bottom: 10px;
  }

  .card-price-amount {
    font-size: 30px;
  }

  .card-price-period {
    font-size: 12px;
  }

  .card-features li {
    gap: 6px;
    padding: 4px 0;
  }

  .card-features span {
    font-size: 11px;
  }

  .card-cta {
    padding: 10px 12px;
    font-size: 12px;
  }
}

.pricing-card:first-child {
  margin-left: 24px;
}

.pricing-card:last-child {
  margin-right: 24px;
}

.pricing-card:hover {
  border-color: #d1d5db;
  box-shadow: 0 10px 20px -5px rgba(0,0,0,0.1);
}

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: 0 10px 15px -3px rgba(42, 157, 143, 0.2);
}

.pricing-card.featured:hover {
  border-color: var(--primary);
}

.pricing-card .popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.card-header {
  margin-bottom: 16px;
}

.card-plan-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 6px;
}

.card-plan-desc {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.4;
}

.card-price {
  margin-bottom: 16px;
}

.card-price-amount {
  font-size: 36px;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: -1px;
}

.card-price-period {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
}

.card-features {
  flex: 1;
  list-style: none;
  margin-bottom: 16px;
}

.card-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid #f3f4f6;
}

.card-features li:last-child {
  border-bottom: none;
}

.check-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 2px;
}

.x-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #9ca3af;
  margin-top: 2px;
}

.warning-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #f59e0b;
  margin-top: 2px;
}

.feature-limited strong {
  color: var(--text) !important;
}

.feature-unavailable {
  color: #9ca3af !important;
  text-decoration: line-through;
}

.card-features span {
  font-size: 12px;
  color: var(--text-light);
}

.card-features strong {
  font-weight: 600;
  color: var(--text);
}

.card-cta {
  display: block;
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s ease;
}

.card-cta.primary {
  background: var(--primary);
  color: white;
}

.card-cta.primary:hover {
  background: var(--primary-dark);
}

.card-cta.secondary {
  background: white;
  color: var(--text);
  border: 2px solid #e5e7eb;
}

.card-cta.secondary:hover {
  border-color: #d1d5db;
  background: #f9fafb;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 14px 28px;
  border-radius: 12px;
  color: white;
  text-decoration: none;
  transition: all 0.2s ease;
}

.store-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.store-btn svg {
  width: 28px;
  height: 28px;
}

.store-label {
  display: block;
  font-size: 11px;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.store-name {
  display: block;
  font-size: 18px;
  font-weight: 600;
}

/* Pricing FAQ Section */
.pricing-faq-section {
  padding: 60px 0;
  background: var(--bg-alt);
}

.pricing-faq-section h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--secondary);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

.faq-item {
  background: white;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
}

.faq-item h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 12px;
}

.faq-item p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .pricing-hero {
    padding: 40px 0 0;
  }

  .pricing-hero .section-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .pricing-hero h1 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .pricing-hero p {
    padding-left: 12px;
    padding-right: 12px;
    max-width: 560px;
    box-sizing: border-box;
  }
}

@media (max-width: 425px) {
  .pricing-hero .section-container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .pricing-hero p {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Legal Pages (Privacy Policy, Terms of Service) */
.legal-page {
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 60px;
  background: var(--bg);
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.legal-page h1 {
  font-size: 42px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
}

.legal-updated {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 48px;
}

.legal-section {
  margin-bottom: 32px;
}

.legal-section h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 12px;
}

.legal-section p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
}

@media (max-width: 768px) {
  .legal-page h1 {
    font-size: 32px;
  }
  
  .legal-section h2 {
    font-size: 18px;
  }
}

/* Contact Page Styles */
.contact-page {
  padding-top: 120px;
  padding-bottom: 80px;
  background: var(--bg);
  min-height: 100vh;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header h1 {
  font-size: 42px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 16px;
}

.contact-header p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.info-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.info-icon svg,
.info-icon .bi {
  color: #fff;
  font-size: 24px;
  line-height: 1;
}

.info-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 8px;
}

.info-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}

.contact-form {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  font-family: inherit;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  background: #fafafa;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(42, 157, 143, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ca3af;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  padding-right: 44px;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.submit-btn .btn-icon {
  transition: transform 0.3s ease;
}

.submit-btn:hover:not(:disabled) .btn-icon {
  transform: translateX(4px);
}

.submit-btn .spinning {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.form-status {
  margin-top: 20px;
  padding: 16px;
  border-radius: 12px;
  display: none;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
}

.form-status.success {
  display: flex;
  background: #ecfdf5;
  color: #059669;
  border: 1px solid #a7f3d0;
}

.form-status.error {
  display: flex;
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

/* Form Validation Styles */
.field-error {
  display: none;
  color: #dc2626;
  font-size: 13px;
  margin-top: 6px;
  font-weight: 500;
}

.form-group input.input-error,
.form-group select.input-error,
.form-group textarea.input-error {
  border-color: #dc2626;
  background: #fef2f2;
}

.form-group input.input-error:focus,
.form-group select.input-error:focus,
.form-group textarea.input-error:focus {
  border-color: #dc2626;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

@media (max-width: 900px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-info {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .info-card {
    flex: 1;
    min-width: 200px;
  }
}

@media (max-width: 768px) {
  .contact-header h1 {
    font-size: 32px;
  }
  
  .contact-header p {
    font-size: 16px;
  }
  
  .contact-form {
    padding: 24px;
  }
  
  .info-card {
    min-width: 100%;
  }
}
