@charset "utf-8";

* { margin: 0px; padding: 0px; box-sizing: border-box; }

body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: rgb(51, 51, 51); background: linear-gradient(135deg, rgb(102, 126, 234) 0%, rgb(118, 75, 162) 100%); }

.container { max-width: 1200px; margin: 0px auto; padding: 20px; }

.header { background: white; border-radius: 20px; padding: 40px; margin-bottom: 30px; box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 40px; text-align: center; }

.company-logo { width: 80px; height: 80px; background: linear-gradient(135deg, rgb(102, 126, 234), rgb(118, 75, 162)); border-radius: 50%; margin: 0px auto 20px; display: flex; align-items: center; justify-content: center; color: white; font-size: 24px; font-weight: bold; }

.header h1 { font-size: 2.5rem; color: rgb(44, 62, 80); margin-bottom: 10px; }

.header .subtitle { font-size: 1.2rem; color: rgb(127, 140, 141); margin-bottom: 20px; }

.contact-info { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin-top: 20px; }

.contact-item { display: flex; align-items: center; gap: 8px; color: rgb(102, 126, 234); font-weight: 500; }

.section { background: white; border-radius: 20px; padding: 40px; margin-bottom: 30px; box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 40px; transition: transform 0.3s; }

.section:hover { transform: translateY(-5px); }

.section-header { display: flex; align-items: center; gap: 20px; margin-bottom: 30px; }

.section-icon { width: 80px; height: 80px; border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: white; flex-shrink: 0; }

.section h2 { font-size: 2rem; color: rgb(44, 62, 80); margin-bottom: 10px; }

.section-description { color: rgb(127, 140, 141); font-size: 1.1rem; margin-bottom: 20px; }

.highlights { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-top: 20px; }

.highlight-item { background: rgb(248, 249, 250); padding: 20px; border-radius: 15px; border-left: 4px solid rgb(102, 126, 234); transition: 0.3s; }

.highlight-item:hover { background: rgb(227, 242, 253); transform: translateX(5px); }

.highlight-item strong { color: rgb(44, 62, 80); font-size: 1.1rem; }

.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; margin-top: 30px; }

.pricing-card { background: linear-gradient(135deg, rgb(102, 126, 234), rgb(118, 75, 162)); color: white; padding: 40px; border-radius: 20px; text-align: center; position: relative; overflow: hidden; }

.pricing-card::before { content: ""; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%); animation: 3s ease 0s infinite normal none running shimmer; }

@keyframes shimmer { 
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.pricing-card h3 { font-size: 1.8rem; margin-bottom: 20px; position: relative; z-index: 1; }

.pricing-card p { font-size: 1.1rem; opacity: 0.9; position: relative; z-index: 1; }

.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 30px; }

.benefit-card { background: linear-gradient(135deg, rgb(240, 147, 251) 0%, rgb(245, 87, 108) 100%); color: white; padding: 30px; border-radius: 15px; text-align: center; transition: transform 0.3s; }

.benefit-card:hover { transform: scale(1.05); }

.benefit-icon { font-size: 3rem; margin-bottom: 15px; }

.cta-section { background: linear-gradient(135deg, rgb(102, 126, 234), rgb(118, 75, 162)); color: white; text-align: center; padding: 60px 40px; border-radius: 20px; margin-top: 30px; }

.cta-button { background: white; color: rgb(102, 126, 234); padding: 15px 40px; border: none; border-radius: 50px; font-size: 1.2rem; font-weight: bold; cursor: pointer; transition: 0.3s; margin-top: 20px; }

.cta-button:hover { transform: translateY(-3px); box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 20px; }

.integration-icons { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin-top: 30px; }

.integration-icon { width: 80px; height: 80px; background: rgb(248, 249, 250); border-radius: 15px; display: flex; align-items: center; justify-content: center; font-size: 2rem; transition: 0.3s; border: 2px solid rgb(233, 236, 239); }

.integration-icon:hover { background: rgb(102, 126, 234); color: white; transform: translateY(-5px); }

@media (max-width: 768px) {
  .container { padding: 10px; }
  .header, .section { padding: 20px; }
  .header h1 { font-size: 2rem; }
  .section h2 { font-size: 1.5rem; }
  .contact-info { flex-direction: column; gap: 15px; }
  .section-header { flex-direction: column; text-align: center; }
}
