/* Importar fuente DM Sans desde Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap');

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

/* Modal overlay and dialog */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 16px;
}

.modal-overlay[hidden] {
  display: none !important;
}

/* Modal fade-in animation */
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-overlay:not([hidden]) {
  animation: modalOverlayFadeIn 0.3s ease-out;
}

@keyframes modalOverlayFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-overlay:not([hidden]) .modal-dialog {
  animation: modalFadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-dialog {
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  width: 100%;
  max-width: 520px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.05);
  position: relative;
  padding: 40px 32px 32px 32px;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.modal-title {
  margin: 0;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #000000;
  text-align: center;
  padding: 16px 0;
  letter-spacing: -0.02em;
}

.modal-title.big {
  line-height: 1.2;
}

@media (max-width: 640px) {
  .modal-title {
    font-size: 1.75rem;
  }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #f3f4f6;
  color: #4b5563;
  font-size: 22px;
  line-height: 32px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: #e5e7eb;
  transform: rotate(90deg);
  color: #000000;
}

body.modal-open {
  overflow: hidden;
}

/* Success message styling */
.contact-success {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px 20px;
  margin-top: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  animation: successFadeIn 0.4s ease-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-success[hidden] {
  display: none !important;
}

@media (max-width: 640px) {
  .contact-success {
    padding: 10px 16px;
    margin-top: 10px;
  }
}

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

.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 auto 8px auto;
  animation: successIconPop 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s backwards;
}

@keyframes successIconPop {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.success-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #10b981;
  margin: 0 0 4px 0;
}

.success-message {
  font-size: 0.85rem;
  color: #64748b;
  margin: 0;
  line-height: 1.3;
}

@media (max-width: 640px) {
  .success-title {
    font-size: 1.1rem;
  }
  
  .success-message {
    font-size: 0.9rem;
  }
}

/* Modern form styling */
.contact-badge {
  display: inline-block;
  background: linear-gradient(135deg, #000000 0%, #374151 100%);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 9999px;
  text-align: center;
  margin: 0 auto 12px auto;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

@media (max-width: 640px) {
  .contact-badge {
    font-size: 0.7rem;
    padding: 5px 12px;
  }
}

.modern-contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-desc {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 36px;
  text-align: center;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .contact-desc {
    font-size: 0.85rem;
    margin-bottom: 24px;
  }
}

.contact-link {
  color: #6b7280;
  text-decoration: none;
  font-weight: 600;
}

.contact-link:hover {
  color: #4b5563;
  text-decoration: underline;
}

.form-content {
  width: 100%;
  max-width: 384px;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 640px) {
  .form-content {
    padding: 0 8px;
  }
}

.modern-input .input-icon-wrapper {
  display: flex;
  align-items: center;
  height: 48px;
  padding-left: 16px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
  background: #ffffff;
  margin-top: 8px;
  margin-bottom: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.modern-input .input-icon-wrapper:focus-within {
  border-color: #000000;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.08);
  background: #ffffff;
}

.modern-input .input-icon-wrapper svg {
  flex-shrink: 0;
  margin-right: 8px;
}

.modern-input .input-icon-wrapper input {
  flex: 1;
  height: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.95rem;
  color: #1e293b;
  padding: 0 12px 0 0;
}

.modern-input label {
  display: block;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #000000;
  text-align: left;
  margin-top: 8px;
  width: 100%;
  letter-spacing: -0.01em;
}

.modern-input {
  width: 100%;
}

.form-row label {
  display: block;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #000000;
  text-align: left;
  margin-top: 16px;
  margin-bottom: 8px;
  width: 100%;
  letter-spacing: -0.01em;
}

.form-row {
  width: 100%;
}

.form-row textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  resize: none;
  outline: none;
  background: #ffffff;
  font-size: 0.95rem;
  color: #1e293b;
  transition: all 0.3s;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.form-row textarea:focus {
  border-color: #000000;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.08);
  background: #ffffff;
}

.submit-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
  background: linear-gradient(135deg, #000000 0%, #374151 100%);
  color: #ffffff;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 16px 32px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  letter-spacing: -0.01em;
}

@media (max-width: 640px) {
  .submit-button {
    font-size: 0.95rem;
    padding: 11px 20px;
  }
}

.submit-button:hover {
  background: linear-gradient(135deg, #1a1a1a 0%, #4b5563 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.submit-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.submit-button .arrow-icon {
  margin-top: 2px;
}


/* CTA Button - Super visible and attractive */
.cta-button {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 9999px;
  height: 64px;
  padding: 0 40px;
  min-width: 280px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #111827;
  text-decoration: none;
  line-height: 1;
  cursor: pointer;
  overflow: hidden;
  box-shadow: inset 0 0 0 0.5px rgba(0,0,0,0.04), inset 1px 1px 0 -0.5px rgba(0,0,0,0.06), inset -1px -1px 0 -0.5px rgba(0,0,0,0.06), 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  animation: ctaPulse 2s ease-in-out infinite, ctaFloat 3s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% {
    box-shadow: inset 0 0 0 0.5px rgba(0,0,0,0.04), inset 1px 1px 0 -0.5px rgba(0,0,0,0.06), inset -1px -1px 0 -0.5px rgba(0,0,0,0.06), 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  50% {
    box-shadow: inset 0 0 0 0.5px rgba(0,0,0,0.04), inset 1px 1px 0 -0.5px rgba(0,0,0,0.06), inset -1px -1px 0 -0.5px rgba(0,0,0,0.06), 0 8px 20px rgba(0, 0, 0, 0.15);
  }
}

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

.cta-button-content {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.cta-button-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 70%
  );
  transform: translateX(-100%) translateY(-100%) rotate(45deg);
  animation: ctaShine 3s ease-in-out infinite;
}

@keyframes ctaShine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  20%, 100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.cta-button:hover {
  transform: translateY(-2px) scale(1.05);
  background-color: #f3f4f6;
  box-shadow: inset 0 0 0 0.5px rgba(0,0,0,0.04), inset 1px 1px 0 -0.5px rgba(0,0,0,0.06), inset -1px -1px 0 -0.5px rgba(0,0,0,0.06), 0 12px 28px rgba(0, 0, 0, 0.18);
}

.cta-button:active {
  transform: translateY(0px) scale(1);
}

.cta-button svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 640px) {
  .cta-button {
    height: 56px;
    padding: 0 28px;
    min-width: 220px;
    font-size: 1.15rem;
  }
  
  .cta-button svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 480px) {
  .cta-button {
    height: 52px;
    padding: 0 24px;
    min-width: 200px;
    font-size: 1.05rem;
  }
  
  .cta-button svg {
    width: 20px;
    height: 20px;
  }
}

/* Lift selected elements slightly upward */
.center-logo,
.content-box p,
.highlight {
  position: relative;
  top: -6px;
}

@media (max-width: 480px) {
  .center-logo,
  .content-box p,
  .highlight,
  .email-box .fey-button {
    top: -4px; /* a bit less on small screens */
  }
}

/* Animated Grid Background */
.bg-grid {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0; /* Behind content */
  pointer-events: none;
  transform: skewY(12deg);
  /* Mask similar to demo: fade out edges */
  -webkit-mask-image: radial-gradient(500px circle at center, #fff, transparent);
  mask-image: radial-gradient(500px circle at center, #fff, transparent);
}

.bg-grid .grid-squares rect {
  fill: rgba(0, 0, 0, 0.25);
  animation: gridSquarePulse var(--grid-duration, 4s) ease-in-out infinite alternate;
}

@keyframes gridSquarePulse {
  0% { opacity: 0; }
  100% { opacity: var(--grid-max-opacity, 0.1); }
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f9fafb;
    color: #374151;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

.top-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border-bottom: 2px solid #e5e7eb;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    position: sticky;
    top: 0;
    z-index: 20;
    gap: 32px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
    margin-right: 40px;
}

.nav-link {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #111827;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: #111827;
    transform: translateY(-2px);
}

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

.contact-button {
    background-color: #ffffff; /* Blanco */
    border: 2px solid #9ca3af; /* Borde gris como el email-box */
    border-radius: 8px;
    padding: 8px 16px;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #374151;
    text-decoration: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

.contact-button:hover {
    background-color: #f9fafb; /* Gris claro al hover */
    color: #1f2937;
    transform: scale(1.05);
}

.contact-button:active {
    background-color: #e5e7eb; /* Gris más oscuro al pulsar */
    color: #111827;
    transform: scale(0.95);
}

/* Hamburger Menu Button */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 30;
}

.hamburger-menu span {
    width: 24px;
    height: 2px;
    background-color: #374151;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

@keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.top-bar-logo {
    position: absolute;
    top: 3px;
    left: 15px;
    width: 40px; /* Tamaño original */
    height: 50px;
    display: block;
    opacity: 1;
    z-index: 10;
}

.main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
}

.center-logo {
    width: 900px;
    height: auto;
    max-width: 95vw;
    margin: 0 auto 30px auto;
    display: block;
    margin-left: -70px; /* Desplaza 70px a la izquierda (30px menos que antes) */
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.center-logo.animate {
    opacity: 1;
    transform: translateY(0);
}

.content-box {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.content-box.animate {
    opacity: 1;
    transform: translateY(0);
}

.email-box {
    background-color: transparent; /* sin recuadro */
    border: none; /* sin borde */
    border-radius: 0;
    padding: 0;
    margin-top: 20px;
    text-align: center;
    box-shadow: none; /* sin sombra */
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.email-box.animate,
.email-box.animate .contact,
.email-box.animate .email {
    opacity: 1;
    transform: translateY(0);
}

/* FAQ Section - Modern Accordion */
.faq-section {
    width: 100%;
    background-color: #ffffff;
    padding: 80px 20px;
    position: absolute;
    top: 100vh;
    left: 0;
    z-index: 10;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-main-title {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.faq-subtitle {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 48px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-accordion-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-accordion-item.active {
    background: #f9fafb;
    border-color: #d1d5db;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    transition: all 0.2s ease;
}

.faq-question:hover {
    color: #000000;
}

.faq-question span {
    flex: 1;
    padding-right: 16px;
}

.faq-icon {
    flex-shrink: 0;
    color: #6b7280;
    transition: transform 0.3s ease;
}

.faq-accordion-item.active .faq-icon {
    transform: rotate(180deg);
    color: #000000;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-accordion-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 24px 20px 24px;
}

.faq-answer-content p {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    margin: 0;
}

.container {
max-width: 800px;
width: 100%;
margin: auto;
    width: 100%;
    margin: auto;
}

.container p {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.2rem;
    line-height: 1.2; /* Interlineado más pequeño para más compacto */
    margin-bottom: 20px;
}

.highlight {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    margin-top: 20px;
    text-align: center;
    letter-spacing: -0.02em;
    line-height: 1.5;
}

.contact {
    font-family: 'Cambria', 'Open Sans', 'Roboto', sans-serif;
    font-size: 1.3rem; /* Más grande para destacar */
    font-weight: 500;
}

.email {
    color: #000000; /* Negro en lugar de azul */
    text-decoration: none;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.email.animate {
    opacity: 1;
    transform: translateY(0);
}

.email:hover {
    text-decoration: underline;
}

/* Laptop / Tablet landscape (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .top-bar {
        padding: 0 16px;
    }

    .nav-links {
        gap: 24px;
        margin-right: 24px;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .contact-button {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .faq-section {
        padding: 70px 32px;
    }

    .faq-main-title {
        font-size: 2.25rem;
    }

    .faq-subtitle {
        font-size: 1.05rem;
    }

    .faq-question {
        padding: 18px 22px;
        font-size: 1.05rem;
    }

    .faq-answer-content {
        padding: 0 22px 18px 22px;
    }

    .faq-answer-content p {
        font-size: 0.98rem;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 16px;
    }

    .faq-main-title {
        font-size: 2rem;
    }

    .faq-subtitle {
        font-size: 1rem;
        margin-bottom: 36px;
    }

    .faq-question {
        padding: 16px 20px;
        font-size: 1rem;
    }

    .faq-answer-content {
        padding: 0 20px 16px 20px;
    }

    .faq-answer-content p {
        font-size: 0.95rem;
    }

    .top-bar {
        height: 60px;
        padding: 0 12px;
        gap: 12px;
    }

    .nav-links {
        gap: 12px;
        margin-right: 12px;
    }

    .nav-link {
        font-size: 0.8rem;
    }

    .top-bar-logo {
        position: absolute;
        top: 8px;
        left: 12px;
        width: 32px;
        height: 40px;
        display: block;
        opacity: 0;
        animation: logoFadeIn 1.5s ease-in-out forwards;
        object-fit: cover;
        z-index: 10;
    }

    .contact-button {
        padding: 8px 14px;
        font-size: 0.75rem;
    }

    .main {
        padding-top: 80px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .center-logo {
        width: 90%;
        max-width: 500px;
        margin-left: 0;
    }

    .content-box {
        padding: 15px;
    }

    .container p {
        font-size: 1.05rem;
        line-height: 1.5;
    }

    .highlight {
        font-size: 1.15rem;
    }

    .faq-section {
        padding: 50px 12px;
    }

    .faq-main-title {
        font-size: 1.75rem;
    }

    .faq-subtitle {
        font-size: 0.95rem;
    }

    .faq-question {
        padding: 14px 16px;
        font-size: 0.95rem;
    }

    .faq-answer-content {
        padding: 0 16px 14px 16px;
    }

    .faq-answer-content p {
        font-size: 0.9rem;
    }

    .modal-dialog {
        max-width: 90%;
        padding: 24px 20px 20px 20px;
    }
}

@media (max-width: 480px) {
    .top-bar {
        height: 60px;
        padding: 0 12px;
        gap: 8px;
        flex-wrap: wrap;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        gap: 0;
        margin: 0;
        padding: 12px 0;
        border-bottom: 2px solid #e5e7eb;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        display: none;
        z-index: 100;
    }

    .nav-links.mobile-menu-open {
        display: flex;
    }

    .nav-link {
        padding: 12px 20px;
        font-size: 0.9rem;
        border-bottom: 1px solid #f3f4f6;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .nav-link::after {
        display: none;
    }

    .top-bar-logo {
        width: 32px;
        height: 40px;
        top: 10px;
        left: 12px;
        position: absolute;
    }

    .contact-button {
        padding: 8px 16px;
        font-size: 0.75rem;
    }

    .hamburger-menu {
        display: flex;
        margin-left: auto;
    }

    .main {
        padding-top: 70px;
        padding-left: 12px;
        padding-right: 12px;
    }

    .center-logo {
        width: 95%;
        max-width: 320px;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .content-box {
        padding: 12px;
    }

    .email-box {
        padding: 0;
        margin-top: 15px;
    }

    .container p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .highlight {
        font-size: 1.05rem;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .faq-section {
        padding: 20px 12px;
    }

    .faq-section h2 {
        font-size: 1.25rem;
    }

    .faq-item {
        margin-bottom: 20px;
    }

    .faq-item h3 {
        font-size: 1.05rem;
    }

    .faq-item p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .modal-overlay {
        padding: 12px;
    }

    .modal-dialog {
        max-width: 95%;
        padding: 20px 16px 16px 16px;
        border-radius: 12px;
    }

    .modal-close {
        width: 28px;
        height: 28px;
        font-size: 18px;
        top: 8px;
        right: 8px;
    }

    .faq-indicator {
        font-size: 0.85rem;
        padding: 8px;
    }
}

@media (max-width: 360px) {
    .top-bar {
        height: 58px;
        padding: 0 10px;
    }

    .top-bar-logo {
        top: 9px;
        left: 10px;
        width: 30px;
        height: 38px;
    }

    .contact-button {
        padding: 7px 14px;
        font-size: 0.85rem;
    }

    .main {
        padding-top: 65px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .center-logo {
        width: 95%;
        max-width: 280px;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .content-box {
        padding: 10px;
    }

    .email-box {
        padding: 0;
        margin-top: 12px;
    }

    .container p {
        font-size: 0.9rem;
        margin-bottom: 12px;
        line-height: 1.5;
    }

    .highlight {
        font-size: 1rem;
        margin-bottom: 12px;
        margin-top: 12px;
    }

    .faq-section {
        padding: 15px 10px;
    }

    .faq-section h2 {
        font-size: 1.15rem;
    }

    .faq-item {
        margin-bottom: 18px;
    }

    .faq-item h3 {
        font-size: 0.95rem;
    }

    .faq-item p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .modal-dialog {
        max-width: 98%;
        padding: 18px 14px 14px 14px;
    }

    .faq-indicator {
        font-size: 0.8rem;
        padding: 7px;
    }
}

/* Legal pages styling */
.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 24px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 0.6s ease-out;
    position: relative;
    z-index: 10;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.legal-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 32px 0;
    text-align: center;
    padding-bottom: 16px;
    border-bottom: 2px solid #e5e7eb;
}

.legal-content {
    line-height: 1.2;
    color: #475569;
}

.legal-content p {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
    text-align: justify;
}

.legal-content p:last-child {
    margin-bottom: 0;
}

.legal-footer {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #1a1a1a;
    text-decoration: none;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 9999px;
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
    border: 1px solid transparent;
}

.back-link:hover {
    background: #f9fafb;
    color: #000000;
    border-color: #e5e7eb;
    transform: translateX(-6px);
}

/* Responsive legal pages */
@media (max-width: 768px) {
    .legal-container {
        padding: 32px 20px;
        border-radius: 12px;
    }

    .legal-title {
        font-size: 2rem;
        margin-bottom: 24px;
    }

    .legal-content p {
        font-size: 1rem;
        margin-bottom: 16px;
    }

    .legal-footer {
        margin-top: 32px;
        padding-top: 20px;
    }

    .back-link {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .legal-container {
        padding: 24px 16px;
        border-radius: 10px;
    }

    .legal-title {
        font-size: 1.75rem;
        margin-bottom: 20px;
    }

    .legal-content p {
        font-size: 0.95rem;
        margin-bottom: 14px;
        text-align: left;
    }

    .legal-footer {
        margin-top: 28px;
        padding-top: 16px;
    }

    .back-link {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}

@media (max-width: 360px) {
    .legal-container {
        padding: 20px 14px;
    }

    .legal-title {
        font-size: 1.5rem;
        margin-bottom: 18px;
    }

    .legal-content p {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
}

/* Why Page Styles */
.why-page {
    padding: 80px 20px 60px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.why-hero {
    text-align: center;
    margin-bottom: 80px;
    padding: 60px 20px;
}

.why-hero-title {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.why-hero-subtitle {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: #4b5563;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.why-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.feature-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.feature-card-highlight {
    background: #ffffff;
    border: 1px solid #e5e7eb;
}

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

.feature-title {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.feature-text {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 24px;
}

.feature-image-placeholder {
    background: #f3f4f6;
    border-radius: 12px;
    padding: 60px 20px;
    text-align: center;
    border: 2px dashed #d1d5db;
    margin-top: 20px;
    overflow: hidden;
}

.feature-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

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

.placeholder-text {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    color: #9ca3af;
    font-weight: 500;
}

.why-cta {
    text-align: center;
    padding: 80px 20px;
    background: #f9fafb;
    border-radius: 24px;
    margin-top: 40px;
}

.why-cta-title {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

#whyContactBtn {
    margin: 0 auto;
}

@media (max-width: 768px) {
    .why-hero-title {
        font-size: 2.5rem;
    }

    .why-hero-subtitle {
        font-size: 1.1rem;
    }

    .why-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-card {
        padding: 30px;
    }

    .why-cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .why-page {
        padding: 60px 16px 40px 16px;
    }

    .why-hero {
        margin-bottom: 50px;
        padding: 40px 16px;
    }

    .why-hero-title {
        font-size: 2rem;
    }

    .why-hero-subtitle {
        font-size: 1rem;
    }

    .feature-card {
        padding: 24px;
    }

    .feature-title {
        font-size: 1.3rem;
    }

    .feature-text {
        font-size: 0.95rem;
    }

    .why-cta {
        padding: 50px 20px;
    }

    .why-cta-title {
        font-size: 1.6rem;
    }
}

/* About Page Styles */
.about-page {
    padding: 80px 20px 60px 20px;
}

.about-hero {
    text-align: center;
    margin-bottom: 100px;
    padding: 60px 20px;
}

.about-hero-title {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.about-hero-subtitle {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: #4b5563;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-mission, .about-team {
    max-width: 1200px;
    margin: 0 auto 100px auto;
}

.mission-content, .team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.team-content {
    grid-template-columns: 1fr 1fr;
}

.section-title {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.mission-description, .team-description {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

.image-placeholder {
    background: #f3f4f6;
    border-radius: 16px;
    padding: 100px 40px;
    text-align: center;
    border: 2px dashed #d1d5db;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.about-stats {
    background: #f9fafb;
    padding: 80px 40px;
    margin: 100px 0;
    border-radius: 24px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.stat-number {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

.stat-label {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #6b7280;
}

.about-values {
    max-width: 1200px;
    margin: 0 auto 100px auto;
}

.section-title-center {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 60px;
    letter-spacing: -0.02em;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.value-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.value-title {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.value-text {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4b5563;
}

.about-cta {
    text-align: center;
    padding: 80px 20px;
    background: #f9fafb;
    border-radius: 24px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta-title {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.about-cta-text {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 40px;
}

#aboutContactBtn {
    margin: 0 auto;
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-hero-subtitle {
        font-size: 1.1rem;
    }

    .mission-content, .team-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .stat-number {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .about-page {
        padding: 60px 16px 40px 16px;
    }

    .about-hero {
        margin-bottom: 60px;
        padding: 40px 16px;
    }

    .about-hero-title {
        font-size: 2rem;
    }

    .about-hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .mission-description, .team-description {
        font-size: 1rem;
    }

    .about-stats {
        padding: 50px 20px;
        margin: 60px 0;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .value-card {
        padding: 30px;
    }

    .about-cta-title {
        font-size: 1.75rem;
    }

    .about-cta-text {
        font-size: 1rem;
    }
}

/* Footer Email Button */
.footer-email-container {
    text-align: center;
    margin-bottom: 20px;
}

.footer-email-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #ffffff;
    border: 1.5px solid #e5e7eb;
    border-radius: 50%;
    color: #374151;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.footer-email-button:hover {
    background: #f9fafb;
    border-color: #000000;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

.footer-email-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

@media (max-width: 640px) {
    .footer-email-container {
        margin-bottom: 16px;
    }
    
    .footer-email-button {
        width: 32px;
        height: 32px;
    }
    
    .footer-email-button svg {
        width: 16px;
        height: 16px;
    }
}

/* Site Footer */
.site-footer {
    background: transparent;
    border-top: 1px solid #e5e7eb;
    padding: 32px 20px 0 20px;
    margin-top: 48px;
}

.pricing-page .site-footer {
    width: 100%;
    margin-top: auto;
    padding-top: 48px;
}

/* Pricing CTA Section */
.pricing-cta {
    width: 100%;
    max-width: 800px;
    text-align: center;
    padding: 40px 20px 20px 20px;
    margin-top: 20px;
}

.pricing-cta-title {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .pricing-cta {
        padding: 40px 20px;
        margin-top: 30px;
    }

    .pricing-cta-title {
        font-size: 1.75rem;
        margin-bottom: 24px;
    }
}

@media (max-width: 480px) {
    .pricing-cta {
        padding: 30px 16px;
        margin-top: 20px;
    }

    .pricing-cta-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-link {
    color: #000000;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

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

.footer-separator {
    color: #cbd5e1;
    font-size: 0.9rem;
}

.footer-copyright {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive footer */
@media (max-width: 640px) {
    .site-footer {
        padding: 24px 16px 0 16px;
        margin-top: 32px;
    }

    .footer-links {
        flex-direction: column;
        gap: 8px;
    }

    .footer-separator {
        display: none;
    }

    .footer-link {
        font-size: 0.9rem;
    }

    .footer-copyright {
        font-size: 0.85rem;
        margin-top: 12px;
    }
}

/* Pricing Section */
.pricing-section {
    width: 100%;
    background: transparent;
    padding: 80px 20px;
    position: relative;
    z-index: 5;
}

.pricing-section.pricing-page {
    min-height: 100vh;
    padding-top: 75px;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.pricing-main-title {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.pricing-subtitle {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 40px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 850px;
    margin: 0 auto;
}

.pricing-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 32px 28px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: scale(0.8) translateY(30px);
    animation: pricingCardEnter 0.6s ease-out forwards;
}

@keyframes pricingCardEnter {
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.pricing-card:nth-child(1) {
    animation-delay: 0.1s;
}

.pricing-card:nth-child(2) {
    animation-delay: 0.3s;
}

.pricing-card:hover {
    transform: scale(1) translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.pricing-card.featured {
    border: 3px solid #fbbf24;
}

.pricing-card.featured:hover {
    transform: scale(1) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #ffffff;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 7px 22px;
    border-radius: 9999px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
    z-index: 10;
    white-space: nowrap;
}

.pricing-card-title {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px 0;
    text-align: center;
    letter-spacing: -0.01em;
}

.pricing-card-description {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9rem;
    color: #64748b;
    margin: 0 0 20px 0;
    text-align: center;
}

.pricing-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e5e7eb;
}

.price-amount {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #dc2626;
    line-height: 1;
    letter-spacing: -0.02em;
}

.price-period {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    color: #64748b;
    margin-top: 8px;
}

.pricing-features {
    flex: 1;
    margin-bottom: 24px;
}

.pricing-features h4 {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 16px 0;
}

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

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9rem;
    color: #475569;
    margin-bottom: 10px;
}

.pricing-features li svg {
    flex-shrink: 0;
    color: #10b981;
}

.pricing-button {
    width: 100%;
    background: linear-gradient(135deg, #000000 0%, #374151 100%);
    color: #ffffff;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    letter-spacing: -0.01em;
}

.pricing-button:hover {
    background: linear-gradient(135deg, #1a1a1a 0%, #4b5563 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.pricing-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.featured-button {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3);
}

.featured-button:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 12px 28px rgba(251, 191, 36, 0.4);
}

.payment-methods {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.payment-methods img {
    height: 24px;
    width: auto;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.payment-methods img:hover {
    opacity: 1;
}

/* Responsive Pricing */
@media (max-width: 768px) {
    .pricing-section {
        padding: 60px 16px;
    }

    .pricing-section.pricing-page {
        padding-top: 80px;
        padding-bottom: 30px;
    }

    .pricing-main-title {
        font-size: 1.85rem;
        margin-bottom: 8px;
    }

    .pricing-subtitle {
        font-size: 0.95rem;
        margin-bottom: 32px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }

    .pricing-card {
        padding: 28px 20px;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

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

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

    .pricing-card-title {
        font-size: 1.4rem;
    }

    .pricing-card-description {
        font-size: 0.85rem;
    }

    .price-amount {
        font-size: 2.75rem;
    }

    .price-period {
        font-size: 0.9rem;
    }

    .pricing-features li {
        font-size: 0.9rem;
    }

    .pricing-button {
        font-size: 1rem;
        padding: 14px 28px;
    }

    .payment-methods {
        gap: 14px;
    }

    .payment-methods img {
        height: 20px;
    }

    .pricing-cta {
        padding: 30px 20px 15px 20px;
        margin-top: 15px;
    }

    .pricing-cta-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .pricing-section {
        padding: 40px 16px;
    }

    .pricing-section.pricing-page {
        padding-top: 75px;
        padding-bottom: 20px;
    }

    .pricing-main-title {
        font-size: 1.6rem;
        margin-bottom: 6px;
    }

    .pricing-subtitle {
        font-size: 0.9rem;
        margin-bottom: 28px;
    }

    .pricing-card {
        padding: 24px 18px;
    }

    .pricing-card-title {
        font-size: 1.3rem;
    }

    .pricing-card-description {
        font-size: 0.85rem;
        margin-bottom: 16px;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .price-period {
        font-size: 0.9rem;
    }

    .pricing-features h4 {
        font-size: 0.95rem;
    }

    .pricing-features li {
        font-size: 0.85rem;
        gap: 8px;
    }

    .pricing-features li svg {
        width: 18px;
        height: 18px;
    }

    .pricing-button {
        font-size: 0.95rem;
        padding: 12px 24px;
    }

    .payment-methods {
        gap: 12px;
    }

    .payment-methods img {
        height: 18px;
    }

    .popular-badge {
        font-size: 0.68rem;
        padding: 5px 14px;
        top: -15px;
    }

    .pricing-cta {
        padding: 25px 16px 10px 16px;
        margin-top: 10px;
    }

    .pricing-cta-title {
        font-size: 1.35rem;
        margin-bottom: 18px;
    }

    .cta-button {
        padding: 14px 32px;
        font-size: 0.95rem;
    }
}
