@charset "UTF-8";

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

:root {
  --bg-1: #051224;
  --bg-2: #001a2e;
  --text: #f3fbff;
  --accent1: #00d4ff;
  --accent2: #ff2d95;
  --accent3: #ffd500;
  --muted: #f0f4f8;
  --danger: #ff4d4f;
  --card-bg: #ffffff;
  --glass: rgba(255, 255, 255, 0.04);
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(135deg, var(--bg-1), var(--bg-2));
  color: var(--text);
  padding: 20px;
  padding-bottom: 100px;
}

h1 {
  text-align: center;
  color: var(--accent2);
}

h2 {
  color: var(--accent2);
  margin-top: 20px;
}

main {
  min-height: calc(100vh - 160px);
}

h1,
h2,
h3 {
  color: var(--accent2);
}

p {
  line-height: 1.6;
  color: var(--text);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 10px 0;
}

header {
  background: linear-gradient(90deg, var(--accent2), var(--accent1));
  color: var(--text);
  padding: 20px 0;
  text-align: center;
  position: relative;
}

.header-top {
  position: relative;
  width: 80%;
  margin: 0 auto;
  padding: 5px 0;
  min-height: 70px;
  overflow: visible;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-top .brand {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.header-top .header-actions {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
}

header h1 {
  margin: 0;
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
  font-size: 1.8rem;
}

.logo {
  width: 70px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

nav {
  margin-top: 10px;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 15px;
  font-size: 18px;
}

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

nav a.active {
  font-weight: bold;
  text-decoration: underline;
}

.container {
  width: 80%;
  margin: auto;
  overflow: hidden;
}

section {
  margin: 20px 0;
}

section h2 {
  color: var(--text);
  margin-bottom: 10px;
}

section p {
  line-height: 1.6;
  color: var(--text);
}

footer {
  background: linear-gradient(90deg, var(--accent2), var(--accent1));
  color: var(--text);
  text-align: center;
  padding: 10px 0;
  position: fixed;
  width: 100%;
  bottom: 0;
  z-index: 50;
}

footer p {
  margin: 0;
}

button {
  background-image: linear-gradient(90deg, var(--accent1) 0%, var(--accent2) 100%);
  background-size: 200% 100%;
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

button:hover {
  background-position: 100% 0;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

button.large {
  padding: 15px 25px;
  font-size: 18px;
}

button.secondary {
  background: #777;
}

button.secondary:hover {
  background-color: #555;
}

.btn-primary,
.btn-outline {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
  transition: all 0.3s ease;
  background-size: 200% 100%;
  text-decoration: none;
}

.btn-primary.outline,
.btn-outline {
  background: transparent;
  color: var(--accent2);
  box-shadow: none;
  border: 2px solid var(--accent2);
  padding: 8px 14px;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-login {
  position: relative;
  z-index: 100;
  background: linear-gradient(135deg, var(--accent2), var(--accent1));
  background-size: 200% 100%;
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  border: 0;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.28);
  transition: all 0.3s ease;
}

.btn-login:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.32);
  background-position: 100% 0;
}

.btn-login:active {
  transform: translateY(0) scale(0.99);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.card {
  background: #fff;
  color: #111;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transform: translateY(6px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card h1,
.card h2,
.card h3,
.card h4,
.card p,
.card span,
.card strong,
.card a,
.card label {
  color: #111;
}

.card input,
.card textarea {
  color: #111;
  background: #fff;
  border: 1px solid #ddd;
}

.card strong {
  color: #111;
}

.card p {
  color: #111;
}

.card a {
  color: var(--accent2) !important;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.card a:hover {
  color: var(--accent1) !important;
  border-bottom: 2px solid var(--accent1);
  text-decoration: none;
}

.card a:visited {
  color: var(--accent2) !important;
}

.card a:visited:hover {
  color: var(--accent1) !important;
}

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

.card-icon {
  font-size: 3rem;
  margin-bottom: 10px;
}

.summary-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.summary-card h4 {
  margin: 10px 0;
  color: var(--accent2);
}

.summary-card p {
  margin-bottom: 15px;
  line-height: 1.5;
}

ul {
  list-style-type: disc;
  margin-left: 20px;
}

ol {
  list-style-type: decimal;
  margin-left: 20px;
}

li {
  margin-bottom: 5px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

table,
th,
td {
  border: 1px solid rgba(255, 255, 255, 0.06);
}

th,
td {
  padding: 10px;
  text-align: left;
  color: var(--text);
  background: transparent;
}

th {
  background: linear-gradient(90deg, var(--accent2), var(--accent1));
  color: #fff;
}

tr:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.02);
}

.comparativa table {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.04), rgba(255, 45, 149, 0.04));
  border-radius: 8px;
  overflow: hidden;
}

.comparativa table tr:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.02);
}

.comparativa table tr:hover {
  background-color: rgba(255, 255, 255, 0.04);
}

.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-wrapper table {
  min-width: 600px;
}

form {
  margin: 20px 0;
}

form.styled-form {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 6px;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

input[type=text],
input[type=email],
textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

form.styled-form input[type=text],
form.styled-form input[type=email],
form.styled-form textarea {
  border: 1px solid var(--accent2);
}

form.styled-form input[type=text]:focus,
form.styled-form input[type=email]:focus,
form.styled-form textarea:focus {
  border-color: var(--accent2);
}

input[type=submit] {
  background-image: linear-gradient(90deg, var(--accent1), var(--accent2));
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s ease;
  background-size: 200% 100%;
}

input[type=submit]:hover {
  background-position: 100% 0;
  transform: translateY(-2px);
}

input[required],
textarea[required] {
  border: 2px solid #ff0000;
}

input[required]:focus,
textarea[required]:focus {
  border-color: #cc0000;
}

.login-form label {
  font-size: 0.9rem;
  margin-top: 8px;
  color: var(--text);
}

.login-form input {
  width: 100%;
  padding: 8px;
  margin-top: 6px;
  border: 1px solid #ddd;
  border-radius: 6px;
  outline: none;
  transition: box-shadow 0.12s ease, border-color 0.12s;
}

.login-form input:focus {
  border-color: var(--accent2);
  box-shadow: 0 6px 18px rgba(255, 45, 149, 0.08);
}

.login-form .small {
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--text);
}

.login-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 12px;
  width: 320px;
  background: linear-gradient(180deg, #ffffff, #fbfbfb);
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  padding: 18px;
  opacity: 0;
  transform: translateY(-10px) scale(0.98);
  transform-origin: top right;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  pointer-events: none;
  z-index: 80;
}

.login-panel.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.login-panel h3 {
  margin-bottom: 8px;
  color: var(--accent2);
}

.contenedor {
  width: 300px;
  margin: auto;
}

#toggle-menu {
  display: none;
}

.pestaña {
  display: block;
  background: linear-gradient(90deg, var(--accent2), var(--accent1));
  color: #fff;
  padding: 15px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 6px;
  text-align: center;
}

.contenido {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  border-radius: 0 0 6px 6px;
  pointer-events: none;
  z-index: 95;
}

#toggle-menu:checked+.pestaña+.contenido {
  max-height: 300px;
  padding: 10px 0;
  pointer-events: auto;
  background-color: #fff;
}

.contenido nav a {
  pointer-events: auto;
}

.contenido nav {
  display: flex;
  flex-direction: column;
}

.contenido nav a {
  color: var(--accent2);
  padding: 10px;
  text-align: center;
  font-weight: bold;
}

.contenido nav a:hover {
  background-color: #eee;
}

a {
  color: var(--accent2);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

a:hover {
  color: var(--accent1);
  text-decoration: underline;
}

a:visited {
  color: var(--accent2);
}

a:visited:hover {
  color: var(--accent1);
  text-decoration: underline;
}

.hero a,
.summary a,
.testimonials a,
.partners-intro a,
.partners-grid a,
.benefits a,
.cta a {
  color: var(--accent1);
}

.hero a:hover,
.summary a:hover,
.testimonials a:hover,
.partners-intro a:hover,
.partners-grid a:hover,
.benefits a:hover,
.cta a:hover {
  color: var(--accent2);
}

nav a.active:hover {
  text-decoration: none;
}

img.bordered {
  border: 4px solid var(--accent2);
  border-radius: 8px;
}

img.bordered:hover {
  border-color: var(--accent1);
}

code {
  background-color: #f4f4f4;
  padding: 2px 4px;
  font-family: "Courier New", Courier, monospace;
  border-radius: 4px;
}

blockquote {
  border-left: 4px solid var(--accent2);
  margin: 20px 0;
  padding-left: 15px;
  color: var(--text);
  font-style: italic;
}

.important {
  background-color: var(--accent3);
  padding: 10px;
  border-left: 5px solid #ffb300;
  margin-bottom: 20px;
}

.error-message {
  color: #ff0000;
  font-weight: bold;
  margin-top: 5px;
}

.success-message {
  color: #008000;
  font-weight: bold;
  margin-top: 5px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.section-title h3 {
  color: var(--text);
}

.hero {
  background: linear-gradient(90deg, rgba(0, 212, 255, 0.06), rgba(255, 45, 149, 0.02));
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 20px;
  text-align: center;
}

.contact {
  max-width: 600px;
  margin: auto;
  margin-bottom: 2rem;
}

.contact .card,
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: block;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.map {
  width: 100%;
  height: 250px;
  background: linear-gradient(180deg, #e9e9e9, #fff);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
}

.testimonials {
  padding: 3rem 1rem;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.03) 0%, rgba(255, 45, 149, 0.02) 100%);
  border-top: 1px solid rgba(0, 212, 255, 0.1);
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.testimonials .section-title h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.testimonials .section-title h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  border-radius: 2px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.testimonial-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(0, 212, 255, 0.05) 100%);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent1);
  box-shadow: 0 15px 50px rgba(0, 212, 255, 0.15);
}

.testimonial-card .testimonial-stars {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.testimonial-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  position: relative;
  z-index: 1;
}

.testimonial-author strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.testimonial-author span {
  display: block;
  color: var(--accent1);
  font-size: 0.85rem;
}

.faq {
  margin-bottom: 120px;
}

.faq article {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(0, 212, 255, 0.02) 100%);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.faq article:hover {
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.1);
}

.faq article h4 {
  padding: 1.2rem;
  margin: 0;
  color: var(--text);
  font-size: 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq article h4::after {
  content: '▼';
  font-size: 0.8rem;
  transition: transform 0.3s ease;
  color: var(--accent1);
}

.faq article.open h4::after {
  transform: rotate(180deg);
}

.faq article p {
  padding: 0 1.2rem 1.2rem;
  margin: 0;
  color: var(--muted);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.whatsapp-button {
  position: fixed;
  right: 16px;
  bottom: 80px;
  background: #25d366;
  color: #fff;
  padding: 8px 12px;
  border-radius: 20px;
  text-decoration: none;
  animation: float 3s ease-in-out infinite;
  z-index: 1000;
}

.back-to-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  display: none;
  z-index: 1000;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.02);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes glow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
  }

  50% {
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease both;
}

.slide-up {
  animation: slideUp 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.pulse {
  animation: pulse 0.9s ease-in-out infinite;
}

@media (min-width: 1000px) {
  .header-top {
    width: 85%;
  }

  .header-top .header-actions {
    right: 24px;
  }

  .login-panel {
    right: 24px;
  }
}

@media (max-width: 1024px) {
  .partners-grid .partners-container {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 768px) {
  .partners-intro {
    padding: 2.5rem 1rem;
  }

  .partners-intro .section-title h3 {
    font-size: 1.8rem;
  }

  .partners-intro .intro-text {
    font-size: 0.95rem;
  }

  .partner-card {
    padding: 1.8rem 1.5rem;
  }

  .partner-card .partner-icon {
    font-size: 2.8rem;
    margin-bottom: 0.8rem;
  }

  .partner-card h4 {
    font-size: 1.1rem;
  }

  .enterprise-item {
    padding: 1.5rem;
  }

  .enterprise-item h5 {
    font-size: 1rem;
  }

  .benefits {
    padding: 2.5rem 1rem;
  }

  .benefit-item {
    padding: 1.8rem 1.5rem;
  }

  .benefit-item .benefit-icon {
    font-size: 2.4rem;
    margin-bottom: 0.8rem;
  }

  .benefit-item h4 {
    font-size: 1rem;
  }

  .cta {
    padding: 2.5rem 1rem;
  }

  .cta .section-title h3 {
    font-size: 1.8rem;
  }

  .testimonials {
    padding: 2.5rem 1rem;
  }

  .testimonials .section-title h3 {
    font-size: 1.8rem;
  }

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

  .testimonial-card {
    padding: 1.5rem;
  }
}

@media (max-width: 600px) {
  body {
    padding: 10px;
    overflow-x: hidden;
  }

  header {
    padding: 8% 0;
    text-align: center;
  }

  .header-top,
  .header-top .brand,
  .header-top .header-actions {
    position: static;
    transform: none;
    width: 100%;
    text-align: center;
  }

  .header-top {
    display: block;
    padding: 0 10px;
    min-height: auto;
    margin: auto;
  }

  header h1 {
    font-size: 1.4rem;
    margin: 2px 0;
  }

  .logo {
    width: 60px;
  }

  .header-actions {
    display: block;
    margin: 8px 0;
    text-align: center;
  }

  .btn-login {
    display: inline-block;
    font-size: 14px;
    padding: 8px 14px;
  }

  .pestaña {
    width: 100%;
    margin: 10px auto;
    text-align: center;
  }

  .contenido {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: transparent;
  }

  #toggle-menu:checked+.pestaña+.contenido {
    max-height: 300px;
  }

  .contenido nav a {
    display: block;
    padding: 10px;
  }

  .login-panel input,
  .login-panel button {
    width: 100%;
  }

  footer {
    position: static;
    margin-top: 20px;
  }
}

.partners-intro {
  text-align: center;
  padding: 3.5rem 1rem;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(255, 45, 149, 0.03) 100%);
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.partners-intro .section-title h3 {
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.partners-intro .intro-text {
  max-width: 750px;
  margin: 1.5rem auto 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
  animation: slideUp 0.6s ease-out;
}

.partners-grid {
  padding: 3.5rem 1rem;
  background: linear-gradient(to bottom, rgba(0, 212, 255, 0.02) 0%, transparent 100%);
}

.partners-grid .section-title h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.partners-grid .section-title h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  border-radius: 2px;
}

.partners-grid .partners-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

@media (max-width: 768px) {
  .partners-grid .partners-container {
    grid-template-columns: 1fr;
  }
}

.partner-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(0, 212, 255, 0.05) 100%);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 18px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.partner-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.partner-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: var(--accent1);
  box-shadow: 0 20px 60px rgba(0, 212, 255, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(255, 45, 149, 0.05) 100%);
}

.partner-card:hover .partner-icon {
  animation: float 2s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.4));
}

.partner-card .partner-icon {
  font-size: 3.5rem;
  margin-bottom: 1.2rem;
  display: block;
  transition: all 0.4s ease;
  z-index: 1;
  position: relative;
}

.partner-card h4 {
  margin: 0.8rem 0 0.5rem;
  color: var(--text);
  font-size: 1.3rem;
  font-weight: 700;
  z-index: 1;
  position: relative;
}

.partner-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0.6rem 0 1.2rem;
  line-height: 1.5;
  z-index: 1;
  position: relative;
}

.partner-card .partner-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  color: #051224;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 1;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.partners-enterprise {
  padding: 3.5rem 1rem;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.03) 0%, rgba(255, 45, 149, 0.02) 100%);
  border-top: 1px solid rgba(0, 212, 255, 0.1);
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.partners-enterprise .section-title h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.partners-enterprise .section-title h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  border-radius: 2px;
}

.partners-enterprise .intro-text {
  text-align: center;
  max-width: 750px;
  margin: 2rem auto 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.enterprise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.8rem;
  margin-top: 2.5rem;
}

@media (max-width: 768px) {
  .enterprise-grid {
    grid-template-columns: 1fr;
  }
}

.enterprise-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(0, 212, 255, 0.02) 100%);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-left: 4px solid var(--accent1);
  padding: 2rem;
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.enterprise-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.enterprise-item:hover {
  box-shadow: 0 12px 40px rgba(0, 212, 255, 0.2);
  transform: translateY(-8px);
  border-left-color: var(--accent2);
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(255, 45, 149, 0.04) 100%);
}

.enterprise-item:hover::before {
  left: 100%;
}

.enterprise-item h5 {
  margin: 0 0 0.8rem;
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.enterprise-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.benefits {
  padding: 3.5rem 1rem;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 212, 255, 0.02) 100%);
}

.benefits .section-title h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.benefits .section-title h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  border-radius: 2px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

.benefit-item {
  text-align: center;
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(255, 45, 149, 0.04) 100%);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.benefit-item::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 213, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.benefit-item:hover {
  transform: translateY(-10px);
  border-color: var(--accent1);
  box-shadow: 0 15px 50px rgba(0, 212, 255, 0.2);
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.12) 0%, rgba(255, 45, 149, 0.06) 100%);
}

.benefit-item:hover .benefit-icon {
  transform: scale(1.2) rotate(10deg);
}

.benefit-item .benefit-icon {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: var(--accent1);
  display: block;
  transition: all 0.4s ease;
  z-index: 1;
  position: relative;
}

.benefit-item h4 {
  margin: 0.8rem 0;
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 700;
  z-index: 1;
  position: relative;
}

.benefit-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  z-index: 1;
  position: relative;
}

.cta {
  padding: 3.5rem 1rem;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(255, 45, 149, 0.05) 100%);
  border-top: 2px solid rgba(0, 212, 255, 0.2);
  text-align: center;
}

.cta .section-title h3 {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 480px) {
  .partners-grid .partners-container {
    gap: 1.5rem;
  }

  .partner-card {
    padding: 1.5rem;
    border-radius: 14px;
  }

  .enterprise-grid {
    gap: 1.2rem;
  }

  .benefits-grid {
    gap: 1.5rem;
  }
}

.contact-section {
  padding: 2rem 1rem;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-forms-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 100%;
  margin: 2rem auto;
}

.contact-form,
.review-form {
  display: flex;
  flex-direction: column;
  padding: 1.8rem 2rem;
  border-radius: 8px;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.contact-form {
  order: 1;
}

.review-form {
  order: 2;
}

.contact-form h4,
.review-form h4 {
  margin: 0 0 1.2rem 0;
  color: #333;
  font-size: 1.2rem;
}

.contact-form label,
.review-form label {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #555;
  font-size: 1rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea,
.review-form input[type="text"],
.review-form input[type="email"],
.review-form textarea {
  padding: 0.9rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus,
.review-form input[type="text"]:focus,
.review-form input[type="email"]:focus,
.review-form textarea:focus {
  outline: none;
  border-color: #336699;
  box-shadow: 0 0 4px rgba(51, 102, 153, 0.2);
}

.contact-form button,
.review-form button {
  margin-top: 1.2rem;
  padding: 0.9rem 1.8rem;
  font-size: 1rem;
}

.star-rating-section {
  margin-top: 1rem;
  margin-bottom: 0.7rem;
}

.star-rating-section label {
  display: block;
  margin-bottom: 0.7rem;
}

.star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  gap: 0.4rem;
  margin: 0;
}

.star-rating input {
  display: none;
}

.star-rating .star-label {
  font-size: 2rem;
  cursor: pointer;
  color: #ddd;
  transition: all 0.15s ease;
  margin: 0;
  padding: 0;
  line-height: 1;
}

.star-rating .star-label:hover {
  color: #ffc107;
  transform: scale(1.2);
  text-shadow: 0 0 5px rgba(255, 193, 7, 0.6);
}

.star-rating .star-label:hover~.star-label {
  color: #ffc107;
  transform: scale(1.2);
  text-shadow: 0 0 5px rgba(255, 193, 7, 0.6);
}

.star-rating input:checked~.star-label {
  color: #ffc107;
  text-shadow: 0 0 5px rgba(255, 193, 7, 0.6);
}

@media (max-width: 768px) {
  .contact-forms-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.faq-section {
  padding: 3rem 1rem;
  max-width: 1300px;
  margin: 2rem auto;
  background: linear-gradient(135deg, rgba(51, 102, 153, 0.08) 0%, rgba(102, 153, 204, 0.08) 100%);
  border-radius: 12px;
}

.faq-section .section-title {
  margin-bottom: 2.5rem;
  text-align: center;
}

.faq-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.faq-item {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.faq-question {
  width: 100%;
  padding: 1.2rem 1.2rem;
  border: none;
  background: white;
  color: #333;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.8rem;
  transition: all 0.3s ease;
  text-align: left;
  line-height: 1.4;
}

.faq-question:hover {
  background: #f8f9fa;
  color: #336699;
}

.faq-question span:first-child {
  flex: 1;
}

.faq-icon {
  font-size: 1.3rem;
  color: #336699;
  transition: transform 0.3s ease;
  font-weight: 300;
  min-width: 24px;
  text-align: right;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: #f8f9fa;
  flex: 1;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 1rem 1.2rem;
}

.faq-answer p {
  color: #555;
  line-height: 1.6;
  margin: 0;
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .faq-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }

  .faq-section {
    padding: 2.5rem 1rem;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 2rem 1rem;
  }

  .faq-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .faq-question {
    padding: 1rem;
    font-size: 0.9rem;
  }

  .faq-icon {
    font-size: 1.1rem;
  }

  .faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0.8rem 1rem;
  }

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

.why-us {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.04), rgba(255, 45, 149, 0.03));
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 212, 255, 0.1);
  margin: 2rem 0;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

.why-us-item {
  text-align: center;
  padding: 1.5rem;
}

.why-us-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.why-us-item h4 {
  color: var(--accent1);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.why-us-item p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.guarantees {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(255, 45, 149, 0.04));
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--accent1);
  margin: 2rem 0;
}

.guarantees h3 {
  color: var(--accent1);
  margin-bottom: 1rem;
}

.guarantees-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.guarantee-item {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  border: 1px solid rgba(0, 212, 255, 0.1);
}

.guarantee-item h4 {
  color: var(--accent2);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.guarantee-item p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}
