/* ===================================
   GLOBAL STYLES
   =================================== */

:root {
  --primary-color: #b325eb;
  --secondary-color: #af1e97;
  --accent-color: #b60ee9;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --danger-color: #ef4444;
  --whatsapp-color: #25D366;
  
  --text-primary: #1e293b;
  --text-secondary: #475569;
  --text-light: #64748b;
  --text-muted: #94a3b8;
  
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --bg-gray: #f1f5f9;
  
  --border-color: #e2e8f0;
  --border-light: #cbd5e1;
  
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  
  --transition: all 0.3s ease;
  --transition-fast: all 0.2s ease;
  
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 16px;
  --border-radius-full: 9999px;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  direction: rtl;
}

/* ===================================
   HEADER STYLES
   =================================== */

header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--bg-white);
  padding: 30px 20px 50px;
  position: relative;
  text-align: center;
  box-shadow: var(--shadow-md);
 
}

.logo-container {
  margin-top: 20px;
  position: absolute;
  left: 20px;
  top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-full);
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.logo-text span:first-child {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--bg-white);
}

.logo-text span:last-child {
  font-size: 11px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.9);
}

.logo-circle {
  background-color: var(--bg-white);
  border-radius: 50%;
  padding: 6px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.logo-circle img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.header-content {
  margin-top: 20px;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 15px;
  align-items: center;
}

.header-content h1 {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.subtitle {
  font-size: 1.15rem;
  opacity: 0.95;
  margin-bottom: 35px;
  font-weight: 400;
}



.contact-right {
  margin-top: 20px;
  position: absolute;
  right: 20px;
  top: 20px;
  text-align: center;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--whatsapp-color);
  color: var(--bg-white);
  border: none;
  padding: 10px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--border-radius-full);
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.whatsapp-button i {
  font-size: 1.1rem;
}

.whatsapp-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  background: #20bb5a;
}

/* ===================================
   CONTAINER & SECTIONS
   =================================== */

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

section {
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  padding: 45px 40px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

section:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

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

.section-header h2 {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
}

.section-description {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-top: 15px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ===================================
   FEATURES SECTION
   =================================== */

.features-section {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
}

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

.feature-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-md);
  padding: 28px 25px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 3px;
  height: 100%;
  background: var(--primary-color);
  opacity: 0.8;
  transition: var(--transition);
}

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

.feature-card:hover::before {
  width: 5px;
}

.feature-icon {
  font-size: 2.8rem;
  margin-bottom: 18px;
  display: block;
  color: var(--primary-color);
  font-weight: bold;
  line-height: 1;
}

.feature-card h3 {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 12px;
  font-weight: 600;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===================================
   SCREENSHOTS SECTION
   =================================== */

.screenshots-section {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
}

.screenshot-group {
  margin-bottom: 45px;
  padding-bottom: 35px;
  border-bottom: 1px solid var(--border-light);
}

.screenshot-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.screenshot-group h3 {
  font-size: 1.4rem;
  color: var(--text-primary);
  margin: 20px 0 15px;
  font-weight: 600;
}

.screenshot-group p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 25px;
  line-height: 1.7;
  max-width: 750px;
}

.screenshot-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 15px;
}

.screenshot-container img {
  width: 100%;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 4px solid var(--bg-white);
  display: block;
}

.screenshot-container img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

/* ===================================
   CTA SECTION
   =================================== */

.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--bg-white);
  text-align: center;
  padding: 55px 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-description {
  font-size: 1.1rem;
  opacity: 0.95;
  margin-bottom: 35px;
  font-weight: 400;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-white);
  color: var(--primary-color);
  padding: 16px 45px;
  font-size: 1.15rem;
  font-weight: 600;
  border-radius: var(--border-radius-full);
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: 2px solid var(--bg-white);
  position: relative;
  overflow: hidden;
}

.primary-button i {
  font-size: 1.35rem;
}

.primary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  background: var(--bg-gray);
}

.primary-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  z-index: -1;
  transition: opacity 0.3s;
  opacity: 0;
}

.primary-button:hover::after {
  opacity: 0.1;
}

.phone-text {
  font-size: 0.95rem;
  opacity: 0.9;
}

.phone-text strong {
  font-size: 1rem;
  color: var(--bg-white);
  font-weight: 600;
}

/* ===================================
   FOOTER STYLES
   =================================== */

footer {
  background: var(--text-primary);
  color: var(--bg-gray);
  text-align: center;
  padding: 45px 20px 35px;
  margin-top: 30px;
  border-top: 3px solid var(--primary-color);
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
}

.footer-content h2 {
  color: var(--bg-white);
  font-size: 1.5rem;
  margin-bottom: 25px;
  font-weight: 600;
}

.legal-info {
  text-align: center;
  line-height: 2;
  margin-bottom: 25px;
  font-size: 0.9rem;
  color: var(--bg-gray);
}

.legal-info p {
  margin-bottom: 8px;
}

.legal-info strong {
  color: var(--primary-color);
}

.copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
  line-height: 1.6;
}

/* ===================================
   MODAL STYLES
   =================================== */

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 20px;
  animation: fadeIn 0.3s ease-out;
}

.modal-content {
  background: var(--bg-white);
  width: 100%;
  max-width: 450px;
  border-radius: var(--border-radius-xl);
  padding: 35px 30px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-xl);
  transform: translateY(15px);
  animation: modalOpen 0.4s ease-out forwards;
  border: 1px solid var(--border-color);
}

@keyframes modalOpen {
  to {
    transform: translateY(0);
  }
}

.close-button {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--bg-gray);
  border: none;
  font-size: 22px;
  color: var(--text-light);
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.close-button:hover {
  color: var(--primary-color);
  background: var(--bg-white);
  transform: rotate(90deg);
  box-shadow: var(--shadow-sm);
}

.modal-content h3 {
  color: var(--text-primary);
  margin: 10px 0 18px;
  font-size: 1.5rem;
  font-weight: 700;
}

.modal-content p {
  margin-bottom: 22px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 10px;
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--border-radius-md);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.contact-link i {
  font-size: 1.25rem;
  min-width: 24px;
  text-align: center;
}

.contact-link.whatsapp {
  color: var(--bg-white);
  background: var(--whatsapp-color);
  border-color: var(--whatsapp-color);
}

.contact-link.whatsapp:hover {
  transform: translateX(-3px);
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
  background: #20bb5a;
}

.contact-link.linkedin {
  color: #0a66c2;
  background: var(--bg-white);
  border-color: #cbdff0;
}

.contact-link.linkedin:hover {
  background: #f0f6ff;
  border-color: #0a66c2;
  transform: translateX(-3px);
  box-shadow: 0 4px 10px rgba(10, 102, 194, 0.2);
}

.contact-link.facebook {
  color: #044a8b;
  background: var(--bg-white);
  border-color: #f8c4d4;
}

.contact-link.facebook:hover {
  background: #fff5f9;
  border-color: #044a8b;
  transform: translateX(-3px);
  box-shadow: 0 4px 10px rgba(48, 51, 225, 0.2);
}

.contact-link.website {
  color: var(--success-color);
  background: var(--bg-white);
  border-color: #c8e6c9;
}

.contact-link.website:hover {
  background: #f0fdf4;
  border-color: var(--success-color);
  transform: translateX(-3px);
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.2);
}

.contact-link.phone {
  color: var(--primary-color);
  background: var(--bg-white);
  border-color: #bbdefb;
}

.contact-link.phone:hover {
  background: #f0f9ff;
  border-color: var(--primary-color);
  transform: translateX(-3px);
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
}

/* ===================================
   ANIMATIONS
   =================================== */

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

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 992px) {
  .header-content h1 {
    font-size: 1.9rem;
    margin-top: 100px;
  }
  
  .subtitle {
    font-size: 1.05rem;
  }
  
  .mockup img {
    max-width: 380px;
  }
  
  section {
    padding: 40px 35px;
  }
  
  .section-header h2 {
    font-size: 1.75rem;
  }
  
  .section-description {
    font-size: 1rem;
  }
  
  .screenshot-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  header {
    padding: 25px 15px 45px;
    margin-top: 15px;
  }
  

  
  .logo-text span:first-child {
    font-size: 13px;
  }
  
  .logo-text span:last-child {
    font-size: 10px;
  }
  
  .logo-circle {
    width: 36px;
    height: 36px;
    padding: 5px;
  }
  
  .logo-circle img {
    width: 24px;
    height: 24px;
  }
  
  .header-content {
    padding: 0 10px;
    margin-top: 100px;
  }
  
  .header-content h1 {
    font-size: 1.7rem;
    line-height: 1.4;
  }
  
  .subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .mockup img {
    max-width: 350px;
  }
  
  .contact-right {
    position: static;
    margin-top: 20px;
  }
  
  .whatsapp-button {
    width: 100%;
    max-width: 300px;
    padding: 12px;
    font-size: 1rem;
  }
  
  .whatsapp-button i {
    font-size: 1.2rem;
  }
  
  section {
    padding: 35px 30px;
    margin-bottom: 35px;
  }
  
  .section-header h2 {
    font-size: 1.65rem;
  }
  
  .section-description {
    font-size: 0.95rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
  }
  
  .feature-card {
    padding: 25px 22px;
  }
  
  .feature-icon {
    font-size: 2.5rem;
  }
  
  .feature-card h3 {
    font-size: 1.2rem;
  }
  
  .feature-card p {
    font-size: 0.9rem;
  }
  
  .screenshot-group {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }
  
  .screenshot-group h3 {
    font-size: 1.3rem;
  }
  
  .screenshot-group p {
    font-size: 0.9rem;
  }
  
  .cta-section {
    padding: 50px 30px;
  }
  
  .cta-section h2 {
    font-size: 1.75rem;
  }
  
  .cta-description {
    font-size: 1.05rem;
  }
  
  .primary-button {
    width: 100%;
    max-width: 400px;
    padding: 15px 30px;
    font-size: 1.1rem;
  }
  
  .primary-button i {
    font-size: 1.3rem;
  }
  
  .phone-text {
    font-size: 0.9rem;
  }
  
  .phone-text strong {
    font-size: 0.95rem;
  }
  
  footer {
    padding: 40px 15px 30px;
  }
  
  .footer-content h2 {
    font-size: 1.4rem;
  }
  
  .legal-info {
    font-size: 0.85rem;
    line-height: 1.8;
  }
  
  .copyright {
    font-size: 0.8rem;
  }
  
  .modal-content {
    padding: 30px 25px;
    max-width: 420px;
  }
  
  .contact-link {
    padding: 13px 16px;
    font-size: 0.95rem;
  }
  
  .contact-link i {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  header {
    padding: 20px 10px 40px;
    margin-top: 10px;
  }
  
  
  
  .logo-text {
    margin-top: 6px;
    align-items: flex-start;
  }
  
  .logo-text span:first-child {
    font-size: 12px;
  }
  
  .logo-text span:last-child {
    font-size: 9px;
  }
  
  .logo-circle {
    width: 32px;
    height: 32px;
    padding: 4px;
  }
  
  .logo-circle img {
    width: 22px;
    height: 22px;
  }
  
  .header-content h1 {
    font-size: 1.6rem;
    margin-top: 100px;
  }
  
  .subtitle {
    font-size: 0.95rem;
  }
  
  .mockup img {
    max-width: 300px;
  }
  
  .contact-right .whatsapp-button {
    padding: 10px;
    font-size: 0.95rem;
  }
  
  .whatsapp-button i {
    font-size: 1.1rem;
  }
  
  section {
    padding: 30px 25px;
    margin-bottom: 30px;
  }
  
  .section-header h2 {
    font-size: 1.55rem;
  }
  
  .section-description {
    font-size: 0.9rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-card {
    padding: 24px 20px;
  }
  
  .feature-icon {
    font-size: 2.3rem;
  }
  
  .feature-card h3 {
    font-size: 1.15rem;
  }
  
  .feature-card p {
    font-size: 0.88rem;
  }
  
  .screenshot-group {
    margin-bottom: 35px;
    padding-bottom: 25px;
  }
  
  .screenshot-group h3 {
    font-size: 1.25rem;
  }
  
  .screenshot-group p {
    font-size: 0.88rem;
    margin-bottom: 20px;
  }
  
  .screenshot-container {
    gap: 20px;
  }
  
  .cta-section {
    padding: 45px 25px;
  }
  
  .cta-section h2 {
    font-size: 1.65rem;
  }
  
  .cta-description {
    font-size: 1rem;
  }
  
  .primary-button {
    padding: 14px 25px;
    font-size: 1.05rem;
  }
  
  .primary-button i {
    font-size: 1.25rem;
  }
  
  .phone-text {
    font-size: 0.88rem;
  }
  
  .phone-text strong {
    font-size: 0.92rem;
  }
  
  footer {
    padding: 35px 10px 25px;
  }
  
  .footer-content h2 {
    font-size: 1.35rem;
  }
  
  .legal-info {
    font-size: 0.82rem;
  }
  
  .copyright {
    font-size: 0.78rem;
  }
  
  .modal-content {
    padding: 28px 22px;
    margin: 15px;
  }
  
  .close-button {
    top: 12px;
    left: 12px;
    width: 32px;
    height: 32px;
    font-size: 20px;
  }
  
  .modal-content h3 {
    font-size: 1.4rem;
  }
  
  .modal-content p {
    font-size: 0.9rem;
    margin-bottom: 18px;
  }
  
  .contact-link {
    padding: 12px 15px;
    font-size: 0.92rem;
  }
  
  .contact-link i {
    font-size: 1.15rem;
  }
}