/* NexPOS Marketing Website Styles */

:root {
  --nexpos-green: #0d5446;
  --nexpos-green-light: #10695a;
  --nexpos-green-dark: #0a3f35;
  --nexpos-accent: #14b8a6;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  line-height: 1.6;
  color: var(--gray-900);
  background: white;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Navigation */
.navbar {
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--nexpos-green), var(--nexpos-accent));
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.25rem;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--gray-900);
}

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

.nav-link {
  text-decoration: none;
  color: var(--gray-600);
  font-weight: 600;
  transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--nexpos-green);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-toggle span {
  width: 1.5rem;
  height: 0.125rem;
  background: var(--gray-600);
  display: block;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--nexpos-green), var(--nexpos-green-light));
  color: white;
  padding: 0.625rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--nexpos-green-light), var(--nexpos-accent));
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(13, 84, 70, 0.3);
}

.btn-secondary {
  background: white;
  color: var(--nexpos-green);
  padding: 0.625rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: var(--gray-100);
}

.btn-white {
  background: white;
  color: var(--nexpos-green);
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s;
}

.btn-white:hover {
  background: var(--gray-100);
}

.btn-outline {
  background: transparent;
  color: white;
  padding: 0.75rem 2rem;
  border: 2px solid white;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-full {
  width: 100%;
  text-align: center;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--nexpos-green), var(--nexpos-green-light), var(--nexpos-accent));
  color: white;
  padding: 6rem 1.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

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

.hero-features {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-feature .icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--nexpos-accent);
}

.hero-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.dashboard-image {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

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

.float-animation {
  animation: float 6s ease-in-out infinite;
}

/* Sections */
.features-section,
.benefits-section,
.content-section,
.tech-section,
.performance-section,
.faq-section,
.access-section {
  padding: 5rem 1.5rem;
}

.features-section {
  background: var(--gray-50);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.section-title-center {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--gray-900);
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--gray-600);
}

/* Feature Cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(13, 84, 70, 0.2);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.feature-description {
  color: var(--gray-600);
}

/* Benefits Section */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(20, 184, 166, 0.1);
  color: var(--nexpos-green);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.badge-center {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(20, 184, 166, 0.1);
  color: var(--nexpos-green);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-weight: 600;
  margin: 0 auto 1rem;
}

.badge-icon {
  font-size: 1.25rem;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-item {
  display: flex;
  align-items: start;
  gap: 0.75rem;
}

.benefit-item .icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--nexpos-accent);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.benefit-item span {
  font-size: 1.125rem;
  color: var(--gray-700);
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--nexpos-green);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--gray-600);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--nexpos-green), var(--nexpos-accent));
  color: white;
  padding: 5rem 1.5rem;
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.cta-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: var(--gray-900);
  color: white;
  padding: 3rem 1.5rem 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-description {
  color: var(--gray-400);
  margin-bottom: 1rem;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

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

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

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
}

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

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--nexpos-green), var(--nexpos-accent));
  color: white;
  padding: 5rem 1.5rem;
  text-align: center;
}

.page-title {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 50rem;
  margin: 0 auto;
}

/* Feature Details */
.feature-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  margin-bottom: 2rem;
}

.feature-detail {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-detail-icon {
  font-size: 4rem;
}

.feature-detail-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--gray-900);
}

.feature-detail-description {
  font-size: 1.125rem;
  color: var(--gray-600);
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-left: 4rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--gray-700);
}

.feature-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--nexpos-accent);
  font-weight: bold;
}

/* Compact Feature Cards */
.feature-card-compact {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--gray-200);
}

.feature-icon-small {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-title-small {
  font-size: 1.125rem;
  font-weight: bold;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.feature-list-compact {
  list-style: none;
  font-size: 0.875rem;
  color: var(--gray-600);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-list-compact li {
  position: relative;
  padding-left: 1rem;
}

.feature-list-compact li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--nexpos-accent);
}

/* Tech Section */
.tech-section {
  background: var(--gray-50);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.tech-card {
  text-align: center;
}

.tech-icon {
  font-size: 3rem;
  width: 4rem;
  height: 4rem;
  background: rgba(20, 184, 166, 0.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.tech-title {
  font-size: 1.125rem;
  font-weight: bold;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.tech-description {
  color: var(--gray-600);
  font-size: 0.875rem;
}

/* Performance Section */
.performance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.metrics-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.metric-item {
  display: flex;
  align-items: start;
  gap: 1rem;
}

.metric-number {
  background: rgba(20, 184, 166, 0.1);
  color: var(--nexpos-green);
  font-weight: bold;
  font-size: 1.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}

.metric-label {
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.metric-description {
  color: var(--gray-600);
  font-size: 0.875rem;
}

.cta-card {
  background: linear-gradient(135deg, var(--nexpos-green), var(--nexpos-accent));
  color: white;
  padding: 3rem;
  border-radius: 1.5rem;
}

.cta-card-title {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.cta-list {
  list-style: none;
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.cta-list li {
  margin-bottom: 1rem;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-method {
  display: flex;
  align-items: start;
  gap: 1rem;
  padding: 1rem;
  background: var(--gray-50);
  border-radius: 0.5rem;
  transition: background 0.3s;
}

.contact-method:hover {
  background: var(--gray-100);
}

.contact-method-icon {
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.contact-method-title {
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.contact-method-link {
  color: var(--nexpos-green);
  text-decoration: none;
}

.contact-method-link:hover {
  text-decoration: underline;
}

.contact-method-text {
  color: var(--gray-600);
}

/* QR Section */
.qr-section {
  background: linear-gradient(135deg, var(--nexpos-green), var(--nexpos-accent));
  color: white;
  padding: 2rem;
  border-radius: 1.5rem;
  margin: 2rem 0;
}

.qr-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
}

.qr-description {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.qr-placeholder {
  background: white;
  border-radius: 0.5rem;
  padding: 3rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.qr-icon {
  font-size: 5rem;
  color: var(--gray-400);
}

.qr-placeholder p {
  color: var(--gray-400);
  margin-top: 1rem;
}

.qr-options {
  font-size: 0.875rem;
}

.qr-options p {
  margin-bottom: 0.5rem;
}

/* Social Buttons */
.social-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-btn {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  transition: opacity 0.3s;
}

.social-btn:hover {
  opacity: 0.9;
}

.social-btn.whatsapp {
  background: #25D366;
}

.social-btn.wechat {
  background: #09B83E;
}

.social-btn.telegram {
  background: #0088cc;
}

/* Form */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--nexpos-accent);
}

.form-textarea {
  resize: vertical;
}

/* Form Success */
.form-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgb(34, 197, 94);
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
}

.success-icon {
  width: 4rem;
  height: 4rem;
  background: rgb(34, 197, 94);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1rem;
}

.success-title {
  color: rgb(21, 128, 61);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.success-text {
  color: rgb(22, 101, 52);
}

.response-times {
  background: rgba(20, 184, 166, 0.1);
  border: 1px solid rgba(20, 184, 166, 0.3);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.response-title {
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.response-list {
  list-style: none;
  font-size: 0.875rem;
  color: var(--gray-700);
}

.response-list li {
  margin-bottom: 0.5rem;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 60rem;
  margin: 0 auto;
}

.faq-card {
  background: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.faq-question {
  font-weight: bold;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--gray-600);
  font-size: 0.875rem;
}

/* Login Page */
.login-section {
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, var(--gray-50), rgba(20, 184, 166, 0.05));
}

.login-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 70rem;
  margin: 0 auto;
}

.login-title {
  font-size: 3rem;
  font-weight: bold;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.login-subtitle {
  font-size: 1.25rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
}

.login-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.info-card {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--gray-200);
}

.info-card-title {
  font-weight: bold;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.info-card-text {
  color: var(--gray-600);
  margin-bottom: 0.75rem;
}

.info-card-link {
  color: var(--nexpos-green);
  font-weight: 600;
  text-decoration: none;
}

.info-card-link:hover {
  text-decoration: underline;
}

/* Login Card */
.login-card {
  background: white;
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--gray-200);
}

.login-card-header {
  text-align: center;
  margin-bottom: 2rem;
}

.login-icon {
  width: 5rem;
  height: 5rem;
  background: linear-gradient(135deg, var(--nexpos-green), var(--nexpos-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1rem;
}

.login-card-title {
  font-size: 1.875rem;
  font-weight: bold;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.login-card-subtitle {
  color: var(--gray-600);
}

.login-card-body {
  margin-bottom: 1.5rem;
}

.divider {
  position: relative;
  text-align: center;
  margin: 1.5rem 0;
}

.divider:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: var(--gray-300);
}

.divider span {
  position: relative;
  background: white;
  padding: 0 1rem;
  color: var(--gray-500);
  font-size: 0.875rem;
}

.security-notice {
  display: flex;
  gap: 0.75rem;
  background: rgba(20, 184, 166, 0.1);
  padding: 1rem;
  border-radius: 0.5rem;
}

.security-icon {
  font-size: 1.25rem;
  color: var(--nexpos-green);
}

.security-title {
  font-weight: 600;
  color: var(--gray-900);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.security-text {
  color: var(--gray-600);
  font-size: 0.75rem;
}

.login-card-footer {
  border-top: 1px solid var(--gray-200);
  padding-top: 1.5rem;
  text-align: center;
}

.footer-text {
  color: var(--gray-600);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.footer-link {
  color: var(--nexpos-green);
  font-weight: 600;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

/* Access Section */
.access-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.access-card {
  background: var(--gray-50);
  padding: 1.5rem;
  border-radius: 1rem;
}

.access-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.access-description {
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.access-list {
  list-style: none;
  font-size: 0.875rem;
  color: var(--gray-700);
}

.access-list li {
  margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .hero-grid,
  .benefits-grid,
  .features-grid,
  .feature-details-grid,
  .tech-grid,
  .performance-grid,
  .contact-grid,
  .faq-grid,
  .login-grid,
  .access-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .page-title,
  .login-title {
    font-size: 2rem;
  }

  .section-title,
  .section-title-center {
    font-size: 2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-buttons .btn-large,
  .cta-buttons .btn-large {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero,
  .page-header,
  .features-section,
  .benefits-section,
  .content-section,
  .cta-section,
  .footer {
    padding: 3rem 1rem;
  }

  .feature-card,
  .stat-card,
  .login-card {
    padding: 1.5rem;
  }
}
