@charset "UTF-8";
/* Compiled from SCSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-blue: #2563eb;
  --light-blue: #3b82f6;
  --dark-blue: #1d4ed8;
  --accent-blue: #60a5fa;
  --white: #ffffff;
  --light-gray: #f8fafc;
  --text-dark: #1e293b;
  --text-light: #64748b;
  --border-color: #e2e8f0;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

/* Header Styles */
.header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 24px rgba(37, 99, 235, 0.1);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 68px;
}

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-blue);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  letter-spacing: -0.02em;
}
.logo i {
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a:hover {
  color: var(--primary-blue);
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: var(--primary-blue);
  border-radius: 2px;
  transition: width 0.25s ease;
}

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

.login-btn {
  background: var(--primary-blue);
  color: var(--white) !important;
  padding: 0.45rem 1.1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}
.login-btn:hover {
  background: var(--dark-blue);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
  transform: translateY(-1px);
}
.login-btn::after {
  display: none !important;
}

/* Language dropdown */
.language-dropdown {
  position: relative;
}

.lang-btn {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--border-color);
  border-radius: 8px;
  padding: 0 0.65rem;
  height: 34px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.lang-btn__code {
  font-size: 0.82rem;
}
.lang-btn__chevron {
  font-size: 0.6rem;
  transition: transform 0.25s ease;
  opacity: 0.6;
}
.lang-btn:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  background: #eff6ff;
}
.lang-btn.is-open {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  background: #eff6ff;
}
.lang-btn.is-open .lang-btn__chevron {
  transform: rotate(180deg);
}

@keyframes langMenuIn {
  from {
    opacity: 0;
    transform: translateY(-6px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: auto;
  min-width: 180px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  z-index: 1001;
  padding: 0.35rem;
}
.lang-menu.is-open {
  display: block;
  animation: langMenuIn 0.2s ease forwards;
}

.lang-menu__item {
  margin: 0;
}
.lang-menu__item button {
  width: 100%;
  background: transparent;
  border: none;
  border-radius: 8px;
  padding: 0.6rem 0.75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-align: left;
  transition: background 0.15s ease;
}
.lang-menu__item button:hover {
  background: #f1f5f9;
}
.lang-menu__item--active button {
  background: #eff6ff;
}
.lang-menu__item--active button .lang-menu__code {
  color: var(--primary-blue);
}
.lang-menu__item--active button i {
  margin-left: auto;
  color: var(--primary-blue);
  font-size: 0.75rem;
}

.lang-menu__code {
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--text-dark);
  min-width: 26px;
}

.lang-menu__name {
  font-size: 0.88rem;
  color: var(--text-light);
}

/* Burger button */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: background 0.2s ease;
  width: 40px;
  height: 40px;
}
.nav-burger:hover {
  background: #f1f5f9;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease, width 0.2s ease;
  transform-origin: center;
}
.nav-burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-burger.is-open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.nav-burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
  color: var(--white);
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="white" stroke-opacity="0.1" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-btn {
  background: var(--white);
  color: var(--primary-blue);
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Services Section */
.services {
  padding: 80px 0;
  background: var(--light-gray);
}

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

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

.section-title h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

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

.service-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
  border-color: var(--accent-blue);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--primary-blue);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.service-card p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-btn {
  background: var(--primary-blue);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.service-btn:hover {
  background: var(--dark-blue);
  transform: translateY(-1px);
}

/* Pricing Section */
.pricing {
  padding: 80px 0;
  background: var(--white);
}

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

.pricing-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid var(--border-color);
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.2);
  border-color: var(--accent-blue);
}

.pricing-card.featured {
  border-color: var(--primary-blue);
  background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
  color: var(--white);
}

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

.pricing-card.featured .plan-name {
  color: var(--white);
}

.pricing-card.featured .price {
  color: var(--white);
}

.pricing-card.featured .feature-list li {
  color: var(--white);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  color: var(--primary-blue);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.2);
}

.plan-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.price {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.price-period {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.pricing-card.featured .price-period {
  color: rgba(255, 255, 255, 0.8);
}

.feature-list {
  list-style: none;
  margin-bottom: 2rem;
}

.feature-list li {
  padding: 0.75rem 0;
  color: var(--text-dark);
  position: relative;
  padding-left: 2rem;
  text-align: left;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-weight: bold;
}

.pricing-card.featured .feature-list li::before {
  color: var(--white);
}

.pricing-btn {
  background: var(--primary-blue);
  color: var(--white);
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  width: 100%;
}

.pricing-btn:hover {
  background: var(--dark-blue);
  transform: translateY(-2px);
}

.pricing-card.featured .pricing-btn {
  background: var(--white);
  color: var(--primary-blue);
}

.pricing-card.featured .pricing-btn:hover {
  background: var(--light-gray);
  color: var(--primary-blue);
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: var(--light-gray);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  padding: 2rem;
}

.contact-info h3 {
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.contact-info p {
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 1rem;
}

.contact-details h4 {
  color: var(--text-dark);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.contact-details p {
  color: var(--text-light);
  margin: 0;
}

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
}

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

.submit-btn {
  background: var(--primary-blue);
  color: var(--white);
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  background: var(--dark-blue);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-form {
    padding: 2rem;
  }
}
/* Footer */
.footer {
  background: var(--text-dark);
  color: var(--white);
  text-align: center;
  padding: 2rem 0;
}

.footer p {
  opacity: 0.8;
}

/* Social Trust Section */
.social-trust {
  padding: 80px 0;
  background: var(--light-gray);
}

/* Stats Grid */
.social-trust .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.social-trust .stat-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.social-trust .stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
  border-color: var(--accent-blue);
}

.social-trust .stat-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-blue);
}

.social-trust .stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.social-trust .stat-text {
  font-size: 1.1rem;
  color: var(--text-light);
}

/* Testimonials Grid */
.social-trust .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.social-trust .testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.social-trust .testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
  border-color: var(--accent-blue);
}

.social-trust .testimonial-photo {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--primary-blue);
}

.social-trust .testimonial-text {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.social-trust .testimonial-name {
  font-weight: bold;
  color: var(--text-dark);
}

/* Responsive */
@media (max-width: 768px) {
  .social-trust .stats-grid,
  .social-trust .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .social-trust .stats-grid,
  .social-trust .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
.visual-demo {
  padding: 80px 0;
  background: var(--light-gray);
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  justify-items: center;
}

.demo-image img {
  width: 100%;
  max-width: 350px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.demo-image img:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav {
    padding: 0 1.25rem;
  }
  .nav-burger {
    display: flex;
  }
  .nav-links {
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    gap: 0;
    padding: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, padding 0.3s ease;
  }
  .nav-links.is-open {
    max-height: 520px;
    opacity: 1;
    padding: 0.75rem 0;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links a:not(.login-btn) {
    display: block;
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
    border-radius: 0;
  }
  .nav-links a:not(.login-btn)::after {
    display: none;
  }
  .nav-links a:not(.login-btn):hover {
    background: #f8fafc;
    color: var(--primary-blue);
  }
  .nav-links .nav-cta-item {
    padding: 0.75rem 1.5rem;
  }
  .nav-links .nav-cta-item .login-btn {
    display: block;
    text-align: center;
    padding: 0.75rem;
    border-radius: 10px;
  }
  .nav-links .language-dropdown {
    padding: 0.5rem 1.5rem;
    border-top: 1px solid var(--border-color);
    margin-top: 0.25rem;
  }
  .nav-links .language-dropdown .lang-btn {
    display: none;
  }
  .nav-links .language-dropdown .lang-menu {
    display: flex;
    flex-direction: row;
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    min-width: 0;
    gap: 0.5rem;
    padding: 0;
  }
  .nav-links .language-dropdown .lang-menu li form button {
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    padding: 0.35rem 0.75rem;
    font-size: 0.82rem;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1.05rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .container {
    padding: 0 1rem;
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.9rem;
  }
  .section-title h2 {
    font-size: 1.8rem;
  }
}
/* ── Role cards ── */
@keyframes roleCardIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes iconPulse {
  0%, 100% {
    box-shadow: 0 8px 24px var(--role-glow);
  }
  50% {
    box-shadow: 0 12px 36px var(--role-glow);
  }
}
@keyframes shimmer {
  from {
    background-position: -200% 0;
  }
  to {
    background-position: 200% 0;
  }
}
@keyframes borderGlow {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
.services {
  background: #f8fafc;
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.role-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
  animation: roleCardIn 0.6s ease both;
  position: relative;
  overflow: hidden;
}
.role-card:nth-child(2) {
  animation-delay: 0.15s;
}
.role-card:nth-child(3) {
  animation-delay: 0.3s;
}
.role-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.55) 50%, transparent 65%);
  background-size: 200% 100%;
  background-position: -200% 0;
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
}
.role-card:hover {
  transform: translateY(-10px);
}
.role-card:hover::before {
  animation: shimmer 0.65s ease-out forwards;
}
.role-card:hover .role-card__icon-wrap {
  transform: scale(1.12) rotate(-6deg);
  animation: iconPulse 1.2s ease infinite;
}
.role-card:hover .role-card__list li {
  transform: translateX(5px);
}
.role-card:hover .role-card__list li:nth-child(1) {
  transition-delay: 0.03s;
}
.role-card:hover .role-card__list li:nth-child(2) {
  transition-delay: 0.07s;
}
.role-card:hover .role-card__list li:nth-child(3) {
  transition-delay: 0.11s;
}
.role-card:hover .role-card__list li:nth-child(4) {
  transition-delay: 0.15s;
}
.role-card--member {
  --role-color: #2563eb;
  --role-glow: rgba(37, 99, 235, 0.35);
}
.role-card--member:hover {
  box-shadow: 0 20px 48px rgba(37, 99, 235, 0.18);
}
.role-card--member .role-card__icon-wrap {
  background: linear-gradient(135deg, #2563eb, #60a5fa);
}
.role-card--member .role-card__list i {
  background: #2563eb;
}
.role-card--member .role-card__list li:hover {
  background: #eff6ff;
}
.role-card--member .role-card__divider {
  background: linear-gradient(90deg, transparent, #2563eb, transparent);
}
.role-card--trainer {
  --role-color: #7c3aed;
  --role-glow: rgba(124, 58, 237, 0.35);
}
.role-card--trainer:hover {
  box-shadow: 0 20px 48px rgba(124, 58, 237, 0.18);
}
.role-card--trainer .role-card__icon-wrap {
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
}
.role-card--trainer .role-card__list i {
  background: #7c3aed;
}
.role-card--trainer .role-card__list li:hover {
  background: #f5f3ff;
}
.role-card--trainer .role-card__divider {
  background: linear-gradient(90deg, transparent, #7c3aed, transparent);
}
.role-card--desk {
  --role-color: #059669;
  --role-glow: rgba(5, 150, 105, 0.35);
}
.role-card--desk:hover {
  box-shadow: 0 20px 48px rgba(5, 150, 105, 0.18);
}
.role-card--desk .role-card__icon-wrap {
  background: linear-gradient(135deg, #059669, #34d399);
}
.role-card--desk .role-card__list i {
  background: #059669;
}
.role-card--desk .role-card__list li:hover {
  background: #ecfdf5;
}
.role-card--desk .role-card__divider {
  background: linear-gradient(90deg, transparent, #059669, transparent);
}
.role-card__icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px var(--role-glow, rgba(0, 0, 0, 0.2));
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.role-card__icon-wrap i {
  font-size: 1.8rem;
  color: #fff;
}
.role-card__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  position: relative;
  z-index: 2;
}
.role-card__tagline {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
  font-style: italic;
  position: relative;
  z-index: 2;
}
.role-card__divider {
  width: 60px;
  height: 2px;
  border-radius: 2px;
  margin: 0.25rem 0;
  position: relative;
  z-index: 2;
}
.role-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
  width: 100%;
  position: relative;
  z-index: 2;
}
.role-card__list li {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.85rem;
  border-radius: 10px;
  background: #f8fafc;
  transition: background 0.2s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: default;
}
.role-card__list li i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: #fff;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.role-card__list li:hover i {
  transform: scale(1.2) rotate(10deg);
}

@media (max-width: 768px) {
  .roles-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .role-card:nth-child(2) {
    animation-delay: 0.08s;
  }
  .role-card:nth-child(3) {
    animation-delay: 0.16s;
  }
}
/* ── Product screenshot ── */
.product-shot {
  background: linear-gradient(180deg, var(--primary-blue) 0%, var(--light-gray) 100%);
  padding: 0 2rem 5rem;
}
.product-shot .container {
  max-width: 1000px;
}
.product-shot__window {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}
.product-shot__bar {
  background: #e2e8f0;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.product-shot__dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #cbd5e1;
  display: block;
  flex-shrink: 0;
}
.product-shot__dot:nth-child(1) {
  background: #f87171;
}
.product-shot__dot:nth-child(2) {
  background: #fbbf24;
}
.product-shot__dot:nth-child(3) {
  background: #4ade80;
}
.product-shot__url {
  margin-left: 0.75rem;
  font-size: 0.75rem;
  color: #94a3b8;
  background: #fff;
  padding: 0.2rem 0.75rem;
  border-radius: 20px;
  flex: 1;
  max-width: 260px;
}
.product-shot img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

/* CSS mock dashboard (replace with real screenshot) */
.mock-dashboard {
  background: #0f172a;
  padding: 1.25rem;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  min-height: 260px;
}

.mock-sidebar {
  background: #1e293b;
  border-radius: 6px;
  padding: 1rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.mock-nav-item {
  height: 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
}
.mock-nav-item--active {
  background: rgba(99, 102, 241, 0.55);
  width: 85%;
}
.mock-nav-item--short {
  width: 55%;
}

.mock-main {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.mock-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
}

.mock-stat-card {
  background: #1e293b;
  border-radius: 6px;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.mock-line {
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
}
.mock-line--val {
  height: 16px;
  background: rgba(255, 255, 255, 0.12);
  width: 65%;
}
.mock-line--accent {
  background: rgba(99, 102, 241, 0.45);
}

.mock-chart {
  background: #1e293b;
  border-radius: 6px;
  padding: 1rem 1rem 0;
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
}

.mock-chart-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: rgba(99, 102, 241, 0.2);
  min-height: 8px;
}
.mock-chart-bar--active {
  background: rgba(99, 102, 241, 0.75);
}

/* ── How it works ── */
.how-it-works {
  padding: 80px 0;
  background: var(--white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 27px;
  left: calc(16.67% + 1.5rem);
  right: calc(16.67% + 1.5rem);
  height: 2px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step__number {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--primary-blue);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
  border: 3px solid var(--white);
}
.step h3 {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 0.65rem;
  font-weight: 600;
}
.step p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 240px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .mock-dashboard {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .mock-sidebar {
    display: none;
  }
  .mock-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .steps::before {
    display: none;
  }
  .product-shot {
    padding: 0 1rem 3rem;
  }
}/*# sourceMappingURL=landingPageStyle.css.map */