:root {
  --primary-color: #2BAC84;
  --primary-hover: #249872;
  --primary-light: #e8f7f2;
  --primary-dark: #1e8a68;
  --text-dark: #1e293b;
  --text-gray: #64748b;
  --text-light: #94a3b8;
  --bg-light: #f8fafc;
  --bg-gradient: linear-gradient(135deg, #e8f7f2 0%, #f0f9ff 100%);
  --white: #ffffff;
  --black: #0f172a;
  --border: #e2e8f0;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Header */
.header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 55px;
  width: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(43, 172, 132, 0.3);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(43, 172, 132, 0.4);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: var(--white);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid var(--border);
  transition: all 0.3s;
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Hero Section */
.hero {
  background: var(--bg-gradient);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(43, 172, 132, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--white);
  border-radius: 24px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  box-shadow: var(--shadow);
}

.badge i {
  color: var(--primary-color);
  font-size: 14px;
}

.hero-title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.highlight {
  color: var(--primary-color);
  position: relative;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-gray);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-icon {
  font-size: 180px;
  color: #25D366;
  animation: float 3s ease-in-out infinite;
}

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

.floating-card {
  position: absolute;
  background: var(--white);
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatCard 4s ease-in-out infinite;
}

.card-1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.card-2 {
  top: 50%;
  right: 0;
  animation-delay: 1s;
}

.card-3 {
  bottom: 15%;
  left: 10%;
  animation-delay: 2s;
}

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

.card-icon {
  font-size: 28px;
  color: var(--primary-color);
}

.card-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

/* Relationship Section */
.relationship {
  padding: 80px 0;
  background: var(--white);
}

.relationship-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
}

.relationship-card {
  background: var(--bg-light);
  padding: 40px;
  border-radius: 24px;
  border: 2px solid var(--border);
  transition: all 0.3s;
}

.relationship-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.icon-box {
  width: 60px;
  height: 60px;
  background: var(--primary-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary-color);
}

.relationship-card h3 {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--primary-color);
  font-weight: 600;
  letter-spacing: 1px;
}

.relationship-card h4 {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

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

.relationship-arrow {
  font-size: 36px;
  color: var(--primary-color);
  font-weight: 400;
}

/* Problem & Solution */
.problem-solution {
  padding: 80px 0;
  background: var(--bg-gradient);
}

.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.ps-card {
  background: var(--white);
  padding: 48px;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.ps-icon {
  font-size: 48px;
  margin-bottom: 24px;
  color: var(--primary-color);
}

.ps-card h3 {
  font-size: 28px;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.ps-card ul {
  list-style: none;
  padding: 0;
}

.ps-card ul li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: var(--text-gray);
  line-height: 1.6;
}

.ps-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 24px;
  line-height: 1;
}

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

.ps-card.solution h3,
.ps-card.solution p {
  color: var(--white);
}

.ps-card.solution .ps-icon {
  color: var(--white);
}

/* Features Section */
.features {
  padding: 80px 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-gray);
}

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

/* Carousel Styles */
.carousel-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 70px;
}

.features-carousel {
  overflow: hidden;
  border-radius: 20px;
}

.features-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 0;
}

.features-track .feature-card {
  min-width: 100%;
  flex-shrink: 0;
  min-height: 450px;
  max-height: 450px;
  overflow-y: auto;
  padding: 32px;
  margin: 0;
}

.features-track .feature-card::-webkit-scrollbar {
  width: 6px;
}

.features-track .feature-card::-webkit-scrollbar-track {
  background: var(--bg-light);
  border-radius: 10px;
}

.features-track .feature-card::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}

.features-track .feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.features-track .feature-card p {
  font-size: 14px;
  margin-bottom: 12px;
}

.features-track .feature-card ul li {
  font-size: 14px;
  padding: 6px 0;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  color: var(--text-dark);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 10;
  box-shadow: var(--shadow-lg);
}

.carousel-btn:hover {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
  left: 0;
}

.carousel-btn.next {
  right: 0;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all 0.3s;
}

.indicator.active {
  background: var(--primary-color);
  width: 28px;
  border-radius: 5px;
}

.feature-card {
  background: var(--bg-light);
  padding: 40px;
  border-radius: 20px;
  border: 2px solid var(--border);
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.feature-card p {
  color: var(--text-gray);
  margin-bottom: 16px;
  line-height: 1.7;
}

.feature-card ul {
  list-style: none;
  padding: 0;
}

.feature-card ul li {
  padding: 8px 0;
  color: var(--text-gray);
  line-height: 1.6;
}

.feature-card ul li strong {
  color: var(--text-dark);
}

/* Comparison Table */
.comparison {
  padding: 80px 0;
  background: var(--bg-gradient);
}

.comparison-table {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.table-header {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  background: var(--text-dark);
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
}

.th {
  padding: 20px;
  text-align: center;
}

.th:first-child {
  text-align: left;
}

.highlight-col {
  background: var(--primary-color);
}

.table-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  border-bottom: 1px solid var(--border);
}

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

.td {
  padding: 20px;
  text-align: center;
  font-size: 15px;
}

.td i {
  margin-right: 6px;
}

.td .fa-check {
  color: var(--primary-color);
}

.td .fa-times {
  color: #ef4444;
}

.td .fa-exclamation-triangle {
  color: #f59e0b;
}

.td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--text-dark);
}

.table-row .highlight-col {
  background: var(--primary-light);
  color: var(--text-dark);
  font-weight: 600;
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
  background: var(--white);
}

.testimonial-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-gradient);
  padding: 48px;
  border-radius: 24px;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.quote-icon {
  font-size: 80px;
  color: var(--primary-color);
  opacity: 0.2;
  position: absolute;
  top: 20px;
  left: 40px;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: 20px;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
}

.author-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
}

.author-role {
  font-size: 14px;
  color: var(--text-gray);
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: var(--text-dark);
}

.cta-card {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 42px;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.3;
}

.cta-content > p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.7;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 32px 0;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 16px;
}

.check-icon {
  width: 24px;
  height: 24px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 12px;
}

.cta-note {
  font-size: 16px;
  color: var(--primary-color);
  font-weight: 600;
  margin-top: 24px;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.contact-card {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  padding: 48px;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.contact-card h2 {
  font-size: 36px;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.contact-card p {
  font-size: 16px;
  color: var(--text-gray);
  margin-bottom: 32px;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background: var(--white);
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--bg-light);
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.modal-close:hover {
  background: var(--primary-color);
  color: var(--white);
}

.modal-title {
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.modal-subtitle {
  font-size: 16px;
  color: var(--text-gray);
  margin-bottom: 32px;
  line-height: 1.6;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group select {
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-size: 15px;
  transition: all 0.3s;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(43, 172, 132, 0.1);
}

.form-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-gray);
  margin-top: 16px;
}

/* Success Modal */
.success-content {
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 0 auto 24px;
  font-weight: 400;
}

.success-message {
  text-align: left;
  background: var(--bg-light);
  padding: 24px;
  border-radius: 16px;
  margin: 24px 0;
}

.success-message p {
  margin-bottom: 16px;
  line-height: 1.7;
  color: var(--text-gray);
}

.success-message p:last-child {
  margin-bottom: 0;
}

.success-message strong {
  color: var(--text-dark);
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: var(--text-light);
  padding: 64px 0 32px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  align-items: start;
}

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

.footer-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  margin-bottom: 20px;
}

.footer-logo .logo-main {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
}

.footer-logo .logo-sub {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
}

.footer-description {
  line-height: 1.7;
  color: var(--text-light);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.footer-newsletter {
  max-width: 400px;
}

.footer-newsletter h4 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
}

.newsletter-text {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--white);
  font-size: 14px;
  transition: all 0.3s;
}

.newsletter-form input::placeholder {
  color: var(--text-light);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.15);
}

.btn-subscribe {
  padding: 12px 24px;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.btn-subscribe:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  transition: all 0.3s;
  text-decoration: none;
}

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

.footer-col h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  font-size: 14px;
}

/* Responsive */
@media (max-width: 968px) {
  .hero-title {
    font-size: 40px;
  }

  .section-title {
    font-size: 32px;
  }

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

  .carousel-container {
    padding: 0 50px;
  }

  .carousel-btn {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .features-track .feature-card {
    min-height: 400px;
    max-height: 400px;
    padding: 24px;
  }

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

  .relationship-arrow {
    transform: rotate(90deg);
  }

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

  .comparison-table {
    overflow-x: auto;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-newsletter {
    max-width: 100%;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .btn-subscribe {
    width: 100%;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav,
  .header-actions {
    display: none;
  }

  .nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
  }

  .menu-toggle {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-image {
    order: -1;
  }

  .hero-visual {
    height: 350px;
  }

  .whatsapp-icon {
    font-size: 120px;
  }

  .hero-title {
    font-size: 32px;
  }

  .cta-content h2 {
    font-size: 28px;
  }

  .cta-features {
    flex-direction: column;
    align-items: center;
  }

  .modal-content {
    padding: 32px 24px;
  }

  .table-header,
  .table-row {
    font-size: 13px;
  }

  .th,
  .td {
    padding: 12px 8px;
  }
}
