/* Custom styles for Soul Chat page */
.soul-chat-hero {
  background: linear-gradient(90deg, #9d62f5 0%, #6049cd 100%);
  padding: 120px 20px 80px;
  position: relative;
  overflow: hidden;
}

.soul-chat-hero::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 150px;
  background: white;
  transform: skewY(-3deg);
}

.hero-chat-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-chat-content h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: white;
  margin-bottom: 30px;
  line-height: 1.2;
}

.hero-chat-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

.hero-chat-image {
  background: white;
  overflow: hidden;
}

.hero-chat-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Partners section custom */
.partners-trust {
  padding: 80px 20px;
  background: white;
  text-align: center;
}

.partners-trust h2 {
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 50px;
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.partner-logo-item img {
  height: 60px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.partner-logo-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

/* Platform section */
.platform-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.platform-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.platform-visual {
  position: relative;
}

.platform-mockup {
  width: 100%;
}

.platform-mockup img {
  width: 100%;
  height: auto;
}

.platform-icons {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.platform-icon-row {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.platform-icon {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.platform-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.platform-icon img {
  width: 50px;
  height: 50px;
}

.platform-content h2 {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.2;
}

.platform-content h3 {
  font-size: 1.5rem;
  color: #4a4a4a;
  margin-bottom: 30px;
  font-weight: 500;
}

/* WhatsApp options section */
.whatsapp-options {
  background: linear-gradient(90deg, #9d62f5 0%, #6049cd 100%);
  padding: 100px 20px;
  position: relative;
}

.whatsapp-options::before,
.whatsapp-options::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 100px;
}

.whatsapp-options::before {
  top: -2px;
  transform: skewY(-3deg);
  transform-origin: top left;
}

.whatsapp-options::after {
  bottom: -2px;
  transform: skewY(3deg);
  transform-origin: bottom right;
}

.whatsapp-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.whatsapp-header {
  text-align: center;
  margin-bottom: 60px;
}

.whatsapp-header h2 {
  font-size: 3rem;
  color: white;
  margin-bottom: 20px;
}

.whatsapp-header p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
}

.whatsapp-phone {
  position: absolute;
  right: 200px;
  top: 100px;
  width: 400px;
  z-index: 2;
}

.whatsapp-phone img {
  width: 100%;
  height: auto;
}

.whatsapp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 800px;
}

.whatsapp-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.whatsapp-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.whatsapp-card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.whatsapp-card h3 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 15px;
}

.whatsapp-card p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* CTA with person section */
.cta-person-section {
  padding: 80px 20px;
  background: white;
}

.cta-person-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.person-image {
  position: relative;
}

.person-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
}

.cta-person-content h2 {
  font-size: 2.5rem;
  color: #6366f1;
  margin-bottom: 20px;
}

.cta-person-content h2 span {
  color: #4a4a4a;
}

.cta-test-button {
  background: #ff1e79;
  color: white;
  padding: 18px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  margin-top: 20px;
}

.cta-test-button:hover {
  background: #e61a6b;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 30, 121, 0.3);
}

/* Centralization section */
.centralization-section {
  background: linear-gradient(90deg, #9d62f5 0%, #6049cd 100%);
  padding: 100px 20px;
  text-align: center;
  position: relative;
}

.centralization-section::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 100px;
  background: white;
  transform: skewY(3deg);
  transform-origin: top right;
}

.centralization-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.centralization-container h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 60px;
}

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

.centralization-item {
  text-align: center;
}

.centralization-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.centralization-icon i {
  font-size: 40px;
  color: white;
}

.centralization-item h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.centralization-item p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Top CTA Banner */
.top-cta-banner {
  background: linear-gradient(90deg, #ff1e79 0%, #ff4a8d 100%);
  padding: 20px;
  text-align: center;
  color: white;
  font-size: 1.2rem;
  font-weight: 500;
}

.top-cta-banner .cta-button {
  background: #6366f1;
  color: white;
  padding: 10px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  margin-left: 20px;
  display: inline-block;
  transition: all 0.3s ease;
}

.top-cta-banner .cta-button:hover {
  background: #4f46e5;
  transform: translateY(-2px);
}

/* CRM Integration section */
.crm-integration {
  padding: 80px 20px;
  background: white;
}

.crm-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.crm-content h2 {
  font-size: 2.5rem;
  color: #6366f1;
  margin-bottom: 20px;
  line-height: 1.2;
}

.crm-content h3 {
  font-size: 1.5rem;
  color: #1a1a1a;
  margin-bottom: 30px;
  font-weight: 500;
}

.crm-content p {
  font-size: 1.1rem;
  color: #4a4a4a;
  line-height: 1.6;
  margin-bottom: 20px;
}

.crm-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
}

/* What it means section */
.what-means-section {
  padding: 60px 20px;
  background: #f8f9fa;
}

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

.what-means-title {
  text-align: center;
  font-size: 2rem;
  color: #6366f1;
  margin-bottom: 50px;
}

.what-means-grid {
  background: linear-gradient(90deg, #9d62f5 0%, #6049cd 100%);
  border-radius: 30px;
  padding: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.what-means-item {
  text-align: center;
  color: white;
}

.what-means-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.what-means-icon i {
  font-size: 40px;
}

.what-means-item p {
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.95;
}

/* Automation section */
.automation-section {
  padding: 80px 20px;
  background: white;
}

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

.automation-header {
  text-align: center;
  margin-bottom: 50px;
}

.automation-header h2 {
  font-size: 2.5rem;
  color: #6366f1;
  margin-bottom: 20px;
}

.automation-header p {
  font-size: 1.2rem;
  color: #4a4a4a;
}

.automation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.automation-card {
  background: #6366f1;
  border-radius: 20px;
  padding: 40px 30px;
  color: white;
  text-align: center;
  transition: all 0.3s ease;
}

.automation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.3);
}

.automation-card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.automation-card-icon i {
  font-size: 30px;
}

.automation-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.automation-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.95;
}

.automation-cta {
  background: linear-gradient(90deg, #ff1e79 0%, #ff4a8d 100%);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  color: white;
}

.automation-cta h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.automation-cta .cta-button {
  background: #6366f1;
  color: white;
  padding: 16px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.automation-cta .cta-button:hover {
  background: #4f46e5;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

/* Problem Solution section */
.problem-solution {
  padding: 80px 20px;
  background: #f8f9fa;
}

.problem-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.problem-content h2 {
  font-size: 3rem;
  color: #6366f1;
  margin-bottom: 40px;
}

.problem-content h3 {
  font-size: 1.3rem;
  color: #1a1a1a;
  margin-bottom: 20px;
  font-weight: 600;
}

.problem-content p {
  font-size: 1.1rem;
  color: #4a4a4a;
  line-height: 1.6;
  margin-bottom: 30px;
}

.problem-content strong {
  color: #1a1a1a;
}

.problem-mockup {
  background: #6366f1;
  border-radius: 30px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.problem-mockup img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

/* Tech differentials section */
.tech-differentials {
  padding: 80px 20px;
  background: white;
}

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

.tech-header {
  text-align: center;
  margin-bottom: 50px;
}

.tech-header h2 {
  font-size: 2.5rem;
  color: #6366f1;
  margin-bottom: 10px;
}

.tech-header p {
  font-size: 1.2rem;
  color: #4a4a4a;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.tech-card {
  background: #4f46e5;

  border-radius: 20px;
  padding: 30px;
  color: white;
  transition: all 0.3s ease;
}

.tech-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
}

.tech-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.tech-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.95;
}

/* Social proof */
.social-proof {
  text-align: center;
  margin-top: 50px;
}

.social-proof h3 {
  font-size: 1.8rem;
  color: #6366f1;
  margin-bottom: 40px;
}

/* Pricing section */
.pricing-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

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

.pricing-offer {
  background: white;
  border: 3px solid #6366f1;
  border-radius: 30px;
  padding: 40px;
  text-align: center;
  margin-bottom: 50px;
}

.pricing-offer h2 {
  font-size: 2rem;
  color: #6366f1;
  margin-bottom: 20px;
}

.pricing-offer p {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 10px;
}

.pricing-offer .highlight {
  color: #ff1e79;
  font-weight: 600;
}

.pricing-guarantee {
  background: #6366f1;
  color: white;
  padding: 15px 30px;
  border-radius: 10px;
  margin: 20px 0;
  font-weight: 500;
}

.pricing-header {
  text-align: center;
  margin-bottom: 50px;
}

.pricing-header h2 {
  font-size: 2.5rem;
  color: #6366f1;
  margin-bottom: 20px;
}

.pricing-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.pricing-feature {
  text-align: center;
}

.pricing-feature i {
  font-size: 40px;
  color: #ff1e79;
  margin-bottom: 15px;
}

.pricing-feature h3 {
  font-size: 1.2rem;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.pricing-feature p {
  color: #4a4a4a;
  font-size: 0.95rem;
}

.pricing-question {
  text-align: center;
  font-size: 1.3rem;
  color: #6366f1;
  margin-bottom: 30px;
  font-weight: 600;
}

.pricing-plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.pricing-card {
  background: #6366f1;
  border-radius: 20px;
  padding: 40px 30px;
  color: white;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(99, 102, 241, 0.3);
}

.pricing-card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.pricing-card .price small {
  font-size: 1rem;
  font-weight: 400;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 30px;
  text-align: left;
  margin-left: 30px;
}

.pricing-card li {
  margin-bottom: 10px;
  font-size: 0.9rem;
  padding-left: 20px;
  position: relative;
}

.pricing-card li:before {
  content: "✓";
  position: absolute;
  left: 0;
}

.pricing-cta-btn {
  background: #ff1e79;
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.pricing-cta-btn:hover {
  background: #e61a6b;
  transform: translateY(-2px);
}

.pricing-extra {
  background: #4f46e5;
  color: white;
  text-align: center;
  padding: 20px;
  border-radius: 15px;
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 30px;
}

/* PABX section */
.pabx-section {
  padding: 80px 20px;
  background: white;
}

.pabx-hero {
  background: linear-gradient(90deg, #9d62f5 0%, #6049cd 100%);
  border-radius: 30px;
  padding: 60px;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}

.pabx-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.pabx-hero-text h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
}

.pabx-hero-text p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.pabx-hero-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
}

.pabx-features {
  margin-bottom: 50px;
}

.pabx-features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.pabx-feature-item {
  text-align: center;
}

.pabx-feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  background: #f8f9fa;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.pabx-feature-icon:hover {
  background: #6366f1;
  transform: translateY(-5px);
}

.pabx-feature-icon:hover i {
  color: white;
}

.pabx-feature-icon i {
  font-size: 40px;
  color: #6366f1;
  transition: all 0.3s ease;
}

.pabx-feature-item h3 {
  font-size: 1rem;
  color: #1a1a1a;
  line-height: 1.3;
}

.pabx-cta-banner {
  background: linear-gradient(90deg, #ff1e79 0%, #ff4a8d 100%);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  color: white;
  margin-bottom: 50px;
}

.pabx-cta-banner h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.pabx-pricing {
  margin-bottom: 40px;
}

.pabx-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.pabx-pricing-card {
  background: #6366f1;
  border-radius: 20px;
  padding: 30px;
  color: white;
  text-align: center;
  transition: all 0.3s ease;
}

.pabx-pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.3);
}

.pabx-pricing-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.pabx-pricing-card .price small {
  font-size: 1rem;
  font-weight: 400;
}

.pabx-pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.pabx-pricing-card ul {
  list-style: none;
  text-align: left;
  font-size: 0.9rem;
  line-height: 1.8;
}

.pabx-pricing-card li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.pabx-pricing-card li:before {
  content: "•";
  position: absolute;
  left: 0;
}

/* Contact form section */
.contact-form-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.contact-form-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-form-left h2 {
  font-size: 2.5rem;
  color: #6366f1;
  margin-bottom: 30px;
  line-height: 1.2;
}

.contact-form-left h3 {
  font-size: 1.8rem;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.contact-form {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  color: #4a4a4a;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #6366f1;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  background: #6366f1;
  color: white;
  padding: 16px 40px;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.form-submit:hover {
  background: #4f46e5;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

/* Responsive */
@media (max-width: 968px) {
  .hero-chat-container,
  .platform-container,
  .cta-person-container,
  .crm-container,
  .problem-container,
  .contact-form-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

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

  .whatsapp-phone {
    display: none;
  }

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

  .automation-grid,
  .pricing-plans,
  .pabx-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .pabx-features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 640px) {
  .soul-chat-hero {
    padding: 100px 15px 60px;
  }

  .hero-chat-content h1 {
    font-size: 2rem;
  }

  .automation-grid,
  .pricing-plans,
  .pabx-pricing-grid {
    grid-template-columns: 1fr;
  }

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

  .pabx-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partners-logos {
    gap: 30px;
  }

  .partner-logo-item img {
    height: 40px;
  }
}
