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

:root {
  --primary-color: #2C3E50;
  --primary-dark: #1a252f;
  --primary-light: #ecf0f5;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --border-color: #e5e7eb;
  --white: #ffffff;
  --accent-color: #2C3E50;
}

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

/* NAVIGATION */
nav {
  background-color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: none;
  border-bottom: 1px solid var(--border-color);
}

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

.logo {
  font-size: 24px;
  font-weight: bold;
  color: var(--text-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Image Placeholder Styles */
.image-placeholder {
  background: linear-gradient(135deg, var(--primary-light) 0%, #f0f8ff 100%);
  border: 2px dashed var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  padding: 20px;
  min-height: 250px;
  position: relative;
  overflow: hidden;
}

.image-placeholder img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
}

.image-placeholder::before {
  content: '🖼️';
  font-size: 48px;
  margin-bottom: 10px;
  display: block;
}

.image-placeholder:has(img) {
  background: none;
  border: none;
  padding: 0;
}

.image-placeholder:has(img)::before {
  display: none;
}

.image-placeholder-sm {
  min-height: 200px;
}

.image-placeholder-lg {
  min-height: 400px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
  align-items: center;
  margin-left: auto;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a {
  display: block;
  padding: 10px 18px;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links > li > a:hover {
  color: var(--primary-color);
}

.nav-links [data-language-picker] {
  padding: 10px 18px;
}

/* DROPDOWN MENU */
.dropdown {
  position: relative;
}

.dropdown > a::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.dropdown:hover > a::after {
  transform: rotate(-225deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-top: 8px;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
  border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
  background-color: var(--bg-light);
  border-left-color: var(--primary-color);
  color: var(--primary-color);
}

.dropdown-menu a:first-child {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.dropdown-menu a:last-child {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.login-btn {
  background-color: var(--primary-color);
  color: #ffffff !important;
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.login-btn:hover {
  background-color: #ea6317;
  transform: translateY(-2px);
  color: #ffffff;
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 5px;
  z-index: 101;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.hamburger:focus {
  outline: none;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #2C3E50 0%, #1a252f 100%);
  color: var(--white);
  padding: 80px 20px;
  text-align: left;
}

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

.hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: none;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
  font-weight: 800;
}

.hero p {
  font-size: 20px;
  margin-bottom: 32px;
  opacity: 0.95;
  line-height: 1.5;
}

.hero-cta {
  display: inline-block;
  background-color: var(--white);
  color: var(--primary-color);
  padding: 14px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

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

.hero-cta-whatsapp:hover {
  background-color: var(--primary-dark);
}

.hero-splash-image {
  max-width: 100%;
  height: auto;
  margin-bottom: 32px;
  max-height: 1200px;
  object-fit: contain;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.3);
  padding: 10px 20px;
  border-radius: 6px;
  margin-bottom: 20px;
  color: white;
  font-size: 14px;
  font-weight: 700;
}

.hero-free-badge {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 20px;
}

/* FEATURES SECTION */
.features {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  background-color: var(--bg-light);
}

.section-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 48px;
  color: var(--text-dark);
  font-weight: 700;
}

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

.feature-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-color);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(74, 144, 226, 0.15);
  border-left: 4px solid var(--primary-color);
}

.feature-icon {
  font-size: 24px;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(100, 100, 100, 0.08);
  border-radius: 8px;
  color: #666666;
  font-weight: 600;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text-dark);
  font-weight: 700;
}

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

/* HOW IT WORKS */
.how-it-works {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

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

.step {
  text-align: center;
  background: white;
  padding: 40px 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border-top: 3px solid var(--primary-color);
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(74, 144, 226, 0.12);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #2563eb 100%);
  color: var(--white);
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.step h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--text-dark);
  font-weight: 700;
}

.step p {
  color: var(--text-light);
  font-size: 14px;
}

/* PRODUCTS SECTION */
.products {
  background-color: var(--bg-light);
  padding: 80px 20px;
}

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

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.product-item {
  background: var(--white);
  padding: 28px;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.product-item:hover {
  transform: translateX(8px);
}

.product-item h4 {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.product-item p {
  color: var(--text-light);
  font-size: 14px;
}

/* PRICING SECTION */
.pricing {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.pricing-card {
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  background: var(--white);
}

.pricing-card.featured {
  border: 2px solid var(--primary-color);
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.05) 0%, rgba(249, 115, 22, 0.02) 100%);
  transform: scale(1.02);
  box-shadow: 0 8px 32px rgba(249, 115, 22, 0.15);
}

.pricing-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-weight: 700;
}

.pricing-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 12px 0;
}

.pricing-price span {
  display: contents;
}

.pricing-tagline {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 24px;
}

.pricing-category {
  margin-bottom: 24px;
}

.pricing-category h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-color);
}

.pricing-features {
  list-style: none;
  margin: 0;
}

.pricing-features li {
  padding: 10px 0;
  color: var(--text-light);
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pricing-features li span {
  flex: 1;
}

.pricing-features li::after {
  content: '';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  font-size: 12px;
  font-weight: bold;
  margin-left: 12px;
  content: '✓';
}

.pricing-btn {
  width: 100%;
  padding: 12px;
  margin-top: 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pricing-card:not(.featured) .pricing-btn {
  background-color: var(--white);
  color: var(--text-dark);
  border: 1px solid var(--border-color);
}

.pricing-card:not(.featured) .pricing-btn:hover {
  background-color: var(--bg-light);
  border-color: var(--text-light);
}

.pricing-card.featured .pricing-btn {
  background-color: var(--primary-color);
  color: var(--white);
}

.pricing-card.featured .pricing-btn:hover {
  background-color: #ea6317;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

/* CONTACT SECTION */
.contact-section {
  background: linear-gradient(135deg, #4a90e2 0%, #2e5c8a 100%);
  padding: 60px 20px;
  color: var(--white);
}

.contact-container {
  max-width: 700px;
  margin: 0 auto;
}

.contact-section h2 {
  font-size: 36px;
  margin-bottom: 12px;
  font-weight: 700;
  text-align: center;
}

.contact-section > .contact-container > p {
  text-align: center;
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.95;
}

.contact-form {
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: var(--white);
  color: var(--text-dark);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #a0aec0;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
  background: #fafafa;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}

.contact-submit {
  width: 100%;
  padding: 14px;
  margin-top: 16px;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: -0.2px;
}

.contact-submit:hover {
  background-color: #ea6317;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.contact-submit:active {
  transform: translateY(0);
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 12px;
  font-style: italic;
}

/* FOOTER */
footer {
  background-color: var(--text-dark);
  color: var(--white);
  text-align: center;
  padding: 40px 20px;
  margin-top: 60px;
}

footer p {
  margin-bottom: 12px;
}

footer a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

footer a:hover {
  text-decoration: underline;
}

/* COMPARISON SECTION */
.comparison-section {
  background: var(--bg-light);
  padding: 80px 20px;
}

.comparison-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
  color: var(--text-dark);
}

.comparison-table-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table thead tr {
  background: white;
  border-bottom: 2px solid var(--primary-color);
}

.comparison-table th {
  padding: 20px;
  font-weight: 700;
  text-align: left;
}

.comparison-table th:nth-child(2),
.comparison-table th:nth-child(3),
.comparison-table th:nth-child(4) {
  text-align: center;
}

.comparison-table .chuio-header {
  color: var(--primary-color);
  font-weight: 700;
}

.comparison-table .free-badge {
  font-size: 12px;
  color: #10b981;
}

.comparison-table .price-badge {
  font-size: 12px;
  color: #666;
}

.comparison-table tbody tr {
  border-bottom: 1px solid var(--border-color);
}

.comparison-table td {
  padding: 16px;
}

.comparison-table td:nth-child(1) {
  font-weight: 600;
}

.comparison-table td:nth-child(2),
.comparison-table td:nth-child(3),
.comparison-table td:nth-child(4) {
  text-align: center;
}

.comparison-table td:nth-child(2) {
  color: var(--primary-color);
  font-weight: 700;
}

/* WAITLIST SECTION */
.waitlist-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
  padding: 80px 20px;
  color: white;
  text-align: center;
}

.waitlist-section h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 20px;
}

.waitlist-section > p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.waitlist-form-wrapper {
  background: white;
  padding: 40px;
  border-radius: 12px;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.waitlist-form input {
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 14px;
  background: white;
  color: var(--text-dark);
}

.waitlist-form button {
  background: var(--primary-color);
  color: white;
  padding: 14px 32px;
  border-radius: 6px;
  border: none;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.waitlist-form button:hover {
  background: var(--primary-dark);
}

.waitlist-form-note {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 20px;
}

.waitlist-whatsapp-link {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 40px;
  font-size: 14px;
}

.waitlist-whatsapp-link a {
  color: white;
  text-decoration: underline;
}

/* FOOTER */
footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  text-align: left;
}

.footer-section h4 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

.footer-section p {
  font-size: 14px;
  color: #999;
  margin-bottom: 15px;
}

.footer-section p.copyright {
  font-size: 12px;
  color: #666;
}

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

.footer-section ul li {
  line-height: 1.8;
}

.footer-section ul li a {
  color: #999;
  text-decoration: none;
  font-size: 14px;
}

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

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  margin-top: 20px;
}

.footer-bottom p {
  font-size: 12px;
  color: #666;
  margin: 0;
}

.footer-address {
  margin-top: 15px;
  font-size: 12px;
  color: #999;
  line-height: 1.8;
}

.footer-address p {
  margin: 2px 0;
}

.footer-address p.label {
  margin: 5px 0;
  font-weight: 600;
  color: #999;
}

.footer-address a {
  color: #999;
  text-decoration: none;
}

.footer-address a:hover {
  color: var(--primary-color);
}

.products-intro-text {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 50px;
  font-size: 18px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.products-cta-wrapper {
  text-align: center;
  margin-top: 50px;
}

.products-cta-link {
  display: inline-block;
  padding: 16px 48px;
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.products-cta-link:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.steps-screenshots {
  margin-top: 60px;
  text-align: center;
}

.steps-screenshots-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.screenshot-white {
  background: transparent;
  border-color: transparent;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hamburger {
    display: flex !important;
  }

  .nav-container {
    height: auto;
    min-height: 72px;
    padding: 8px 16px;
    flex-wrap: nowrap;
    gap: 12px;
  }

  .logo {
    flex-shrink: 0;
  }

  .logo img {
    height: 50px !important;
    width: auto;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    gap: 0;
    width: 100%;
    z-index: 99;
    display: flex;
  }

  .nav-links.active {
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .nav-links > li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-links > li > a {
    padding: 16px 20px;
    font-size: 16px;
    width: 100%;
    display: block;
  }

  .dropdown-menu {
    position: static;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    box-shadow: none;
    background-color: var(--bg-light);
    margin-top: 0;
    transition: max-height 0.3s ease;
    padding: 0;
    pointer-events: none;
  }

  .dropdown-menu a {
    display: block;
    padding: 16px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    border-bottom: 1px solid var(--border-color);
    pointer-events: none;
  }

  .dropdown-menu a:last-child {
    border-bottom: none;
  }

  .dropdown.active .dropdown-menu {
    max-height: calc(100vh - 250px);
    overflow-y: auto;
    pointer-events: auto;
  }

  .dropdown.active .dropdown-menu a {
    pointer-events: auto;
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 0;
    margin-left: auto;
  }

  .nav-actions [data-language-picker] {
    border-bottom: none;
    border-left: 1px solid var(--border-color);
    padding: 8px 12px;
  }

  .dropdown > a::after {
    transform: rotate(-45deg);
  }

  .dropdown.active > a::after {
    transform: rotate(-225deg);
  }

  [data-language-picker] {
    padding: 16px 20px;
    display: flex;
    align-items: center;
  }

  .dropdown-menu {
    min-width: 160px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    display: flex;
    flex-direction: column-reverse;
  }

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

  .hero p {
    font-size: 16px;
  }

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

  .hero-cta,
  .hero-cta-whatsapp {
    flex: 1;
    min-width: 140px;
  }

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

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

  .contact-form {
    padding: 24px 16px;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: scale(1);
  }
}

@media (max-width: 480px) {
  .nav-container {
    height: auto;
    min-height: 72px;
    padding: 8px 16px;
  }

  .nav-links {
    top: 72px;
    flex-direction: column;
  }

  .nav-links > li > a {
    padding: 16px 20px;
    font-size: 16px;
  }

  .logo {
    font-size: 18px;
  }

  .hero {
    padding: 40px 20px;
  }

  .hero h1 {
    font-size: 24px;
  }

  .hero p {
    font-size: 14px;
  }

  .hero-cta {
    padding: 12px 30px;
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta,
  .hero-cta-whatsapp {
    width: 100%;
    display: block;
    text-align: center;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .features,
  .how-it-works,
  .pricing,
  .products,
  .contact-section {
    padding: 40px 20px;
  }

  .contact-section h2 {
    font-size: 28px;
  }

  .contact-form {
    padding: 20px;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    padding: 30px 20px;
  }

  .pricing-price {
    font-size: 36px;
  }
}
