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

body {
  font-family: 'PPNeueMontrealArabic', sans-serif;
  background: #f7f5f2;
  color: #1d1d1f;
  line-height: 1.5;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1240px;
  padding: 24px 32px;
  margin: 0 auto;
}

.logo {
  font-weight: 700;
  font-size: 24px;
  text-transform: lowercase;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: #1d1d1f;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #6c6c70;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}

.btn-primary {
  background: #1d1d1f;
  color: #ffffff;
  font-weight: 400;
}

.btn-primary:hover {
  background: #353537;
}

/* Secondary CTA button */
.btn-secondary {
  background: #d0c0ff;
  color: #1d1d1f;
  margin-top: 32px;
  padding: 18px 40px;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  border: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-secondary:hover {
  background: #c6b6ff;
  border-color: #1d1d1f10;
}

.btn-secondary .arrow {
  font-size: 20px;
  transition: transform 0.2s ease;
  animation: arrowPulse 1s ease-out 0.8s forwards;
}

.btn-secondary:hover .arrow {
  transform: translateX(6px);
}

/* Hero Section */
.hero {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  max-width: 1240px;
  margin: 0 auto;
  padding: 64px 32px;
}

.hero-content {
  flex: 1 1 50%;
}

.badge {
  display: inline-block;
  background: #ffebb6;
  color: #a35d00;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  margin-bottom: 24px;
  letter-spacing: 0.4px;
}

/* Heading & paragraph tweaks */
/* Custom heading font based on provided variables */
.hero-content h1 {
  font-family: 'PPNeueMontrealArabic', sans-serif;
  font-size: 64px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 24px;
  /* per-word animation handled via JS */
}

/* style for each word span in hero title */
.hero-title-word {
  opacity: 0;
  display: inline-block;
}

.hero-content p {
  font-size: 16px;
  max-width: 520px;
  margin-bottom: 12px;
  color: #444446;
}

.trusted-by p {
  font-size: 14px;
  color: #6c6c70;
  margin-top: 48px;
  margin-bottom: 16px;
}

.logos {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-weight: 600;
  font-size: 14px;
}

/* Calendar visual */
.hero-visual {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
}

.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  background: #eceae7;
  padding: 8px;
  border-radius: 8px;
}

.weekday {
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  padding: 6px 0;
  color: #6c6c70;
}

/* Calendar day cell larger */
.day {
  position: relative;
  background: #ffffff;
  text-align: left;
  padding: 14px 8px;
  min-width: 74px;
  min-height: 80px;
  font-size: 13px;
}

.day small {
  font-size: 10px;
  color: #6c6c70;
}

.day.booked {
  color: #ffffff;
}

.day.purple {
  background: #c2a8ff;
}

.day.green {
  background: #b4f7c5;
  color: #1d1d1f;
}

.day.beige {
  background: #ebe8e0;
  color: #1d1d1f;
}

/* Features Section */
.features {
  display: flex;
  gap: 56px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 96px 32px;
  align-items: flex-start;
}

.features-content {
  flex: 1 1 45%;
}

.features-content h2 {
  font-size: 40px;
  font-weight: 500;
  margin: 24px 0;
  color: #1d1d1f;
}

.feature-group {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.05);
}

.feature-group + .feature-group {
  margin-top: 32px;
}

.feature-heading {
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 18px;
}

.feature-heading .icon {
  font-size: 20px;
}

.feature-group ul {
  list-style: disc inside;
  color: #444446;
  font-size: 15px;
  line-height: 1.6;
}

.features-visual {
  flex: 1 1 55%;
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

/* Dark theme visual card */
.leads-card {
  background: #2b2d33;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  padding: 32px;
  max-width: 480px;
  width: 100%;
  font-size: 14px;
  color: #ffffff;
  overflow: hidden;
}

.leads-header {
  font-weight: 600;
  margin-bottom: 16px;
  color: #ffffff;
}

.tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.tab {
  flex: 1;
  padding: 10px 0;
  border: none;
  background: #3a3c42;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
  color: #ffffff;
}

.tab.active {
  background: #8d7bff;
  color: #ffffff;
}

.field {
  margin-bottom: 20px;
}

.field input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid #555;
  background: #3a3c42;
  color: #ffffff;
  font: inherit;
}

.field input::placeholder {
  color: #aaaaaa;
}

.field small {
  display: block;
  margin-top: 6px;
  color: #c0c0c4;
}

.btn-find {
  width: 100%;
  padding: 14px 0;
  background: #6050ff;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  margin-bottom: 24px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-find:hover {
  background: #7c6bff;
}

.preview-card {
  background: #3a3c42;
  padding: 20px;
  border-radius: 8px;
  transition: opacity 0.3s ease;
}

.preview-header {
  font-weight: 600;
  margin-bottom: 16px;
  color: #ffffff;
}

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

.avatar {
  width: 48px;
  height: 48px;
  background: #555;
  border-radius: 50%;
}

.name {
  font-weight: 600;
  color: #ffffff;
}

.title {
  font-size: 13px;
  color: #c0c0c4;
}

.profile-details {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: #c0c0c4;
}

.detail-icon {
  margin-right: 6px;
}

.preview-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.nav-arrow {
  font-size: 28px;
  cursor: pointer;
  color: #c0c0c4;
  transition: color 0.2s ease;
}

.nav-arrow:hover {
  color: #ffffff;
}

.dots {
  display: flex;
  gap: 12px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #6c6c70;
}

.dot.active {
  background: #ffffff;
}

/* disable text cursor for readonly inputs */
.field input[readonly] {
  pointer-events: none;
}

/* Process Section */
.process {
  background: #ffffff;
}

.process-inner {
  padding: 96px 32px;
  text-align: center;
  max-width: 1240px;
  margin: 0 auto;
}

.process-heading {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.15;
  max-width: 900px;
  margin: 0 auto 64px;
  color: #1d1d1f;
}

.process-steps {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.process-step {
  max-width: 260px;
  text-align: left;
}

.process-img {
  width: 260px;
  height: 160px;
  border-radius: 4px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.variant-1 {
  background: #d0c0ff;
}
.variant-2 {
  background: #ede9e2;
}
.variant-3 {
  background: #d0c0ff;
}
.variant-4 {
  background: #f0f0f0;
}

.step-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1d1d1f;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.step-desc {
  font-size: 14px;
  color: #6c6c70;
  line-height: 1.5;
}

/* Tabbed Feature Section */
.feature-tabs {
  padding: 80px 32px 0;
  max-width: 1240px;
  margin: 0 auto 96px;
}

.tabs-nav {
  display: flex;
  gap: 24px;
  background: #ffffff;
  padding: 20px 32px;
  border-radius: 4px;
  overflow-x: auto;
}

.tab-item {
  background: none;
  border: none;
  font: inherit;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: #6c6c70;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.tab-item.active {
  color: #1d1d1f;
  font-weight: 600;
}

.tab-card {
  margin-top: 24px;
  border-radius: 8px;
  display: flex;
  background: #1d1d1f;
  overflow: hidden;
}

.dark-card {
  background: #1f1c21;
}

.tab-copy {
  flex: 1 1 50%;
  padding: 64px;
  color: #ffffff;
}

.tab-title {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 32px;
  line-height: 1.15;
}

.tab-desc {
  font-size: 16px;
  color: #c0c0c4;
  max-width: 420px;
  line-height: 1.6;
  margin-bottom: 48px;
}

.link-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid #444;
  padding-bottom: 6px;
  transition: color 0.2s ease;
}

.link-cta:hover {
  color: #d0c0ff;
}

.tab-visual {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1f1c21;
}

.bars {
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bar {
  height: 12px;
  background: #2b2d33;
  border-radius: 2px;
}
.bar.white { background: #ffffff; }
.bar.green { background: #b4f7c5; }
.bar.purple { background: #c2a8ff; }

/* Partner Block */
.partner-block {
  display: flex;
  max-width: 1240px;
  margin: 40px auto 96px;
  border-radius: 12px;
  overflow: hidden;
}

.partner-left {
  background: #1f1c21;
  flex: 0 0 60%;
  padding: 96px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.partner-left h2 {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 24px;
  max-width: 620px;
}

.partner-left p {
  font-size: 16px;
  color: #c0c0c4;
  max-width: 420px;
  margin-bottom: 40px;
}

.partner-right {
  background: #d0c0ff;
  flex: 0 0 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 96px;
}

.partner-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.partner-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 32px;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 14px;
}

.partner-card.white {
  background: #ffffff;
  color: #1d1d1f;
}

.partner-card.tint {
  background: #ebe8ff;
  color: #1d1d1f;
}

.partner-card.purple {
  background: #c2a8ff;
  color: #ffffff;
}

.partner-icon {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  background: #1d1d1f;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 20px;
}

/* Testimonials Section */
.testimonials {
  position: relative;
  padding: 120px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-wrapper {
  position: relative;
  max-width: 1000px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.testimonial-backdrop {
  position: absolute;
  top: -30px;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translateX(-50%);
  background: #ffffff; /* same as card colour but lower opacity */
  opacity: 0.6;
  border-radius: 20px;
  z-index: 0;
}

.testimonial-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 56px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.05);
  z-index: 1;
  max-width: 100%;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.testimonial-card.fade-out { opacity: 0; transform: translateX(-20px); }
.testimonial-card.fade-in { opacity: 1; transform: translateX(0); }

.quote-icon {
  font-size: 32px;
  color: #c0c6d4;
  margin-bottom: 24px;
}

.testimonial-heading {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1d1d1f;
}

.testimonial-text {
  font-size: 18px;
  color: #444446;
  margin-bottom: 32px;
  line-height: 1.5;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #ddd center/cover no-repeat;
}

.author-name {
  font-weight: 600;
  color: #1d1d1f;
}

.author-role {
  font-size: 14px;
  color: #6c6c70;
}

.testimonial-nav {
  background: #ffffff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  font-size: 20px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.testimonial-nav:hover { background: #f0f0f0; }

.testimonial-nav.left { margin-right: 24px; }
.testimonial-nav.right { margin-left: 24px; }

/* FAQ Section */
.faq {
  padding: 80px 32px 120px;
}

.faq-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.faq-heading {
  font-size: 64px;
  font-weight: 500;
  margin-bottom: 64px;
  letter-spacing: -0.02em;
}

.faq-list {
  border-top: 1px solid #e0ded8;
}

.faq-item + .faq-item {
  border-top: 1px solid #e0ded8;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 32px 0;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
  color: #1d1d1f;
}

.faq-arrow {
  transition: transform 0.25s ease;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.25s ease;
  padding-right: 40px;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  opacity: 1;
  padding-bottom: 32px;
}

.faq-answer p {
  font-size: 16px;
  color: #444446;
  line-height: 1.6;
}

/* Footer */
.footer {
  background: #1f1c21;
  color: #ffffff;
  padding: 80px 32px 40px;
  font-size: 14px;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  font-size: 20px;
  font-weight: 700;
  text-transform: lowercase;
}

.footer-nav {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}

.footer-nav a:hover { opacity: 0.7; }

.footer-social {
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}
.footer-social:hover { opacity: 0.7; }

.footer-divider {
  border: none;
  border-top: 1px solid #353537;
  margin: 0 auto 24px;
  max-width: 1240px;
}

.footer-copy {
  text-align: center;
  font-size: 13px;
  color: #c0c0c4;
}

.footer-email { color:#ffffff; font-size:14px; }

/* Responsive adjustments */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }
  .hero-visual {
    margin-top: 40px;
  }
  .features {
    flex-direction: column;
  }
  .features-visual {
    margin-top: 40px;
  }
  .process-heading {
    font-size: 32px;
    margin-bottom: 40px;
  }
  .process-step {
    max-width: 100%;
  }
  .process-img {
    width: 100%;
    height: 140px;
  }
  .tab-card {
    flex-direction: column;
  }
  .tab-copy {
    padding: 48px 32px;
  }
  .tab-title {
    font-size: 32px;
  }
  .bars { width: 90%; }
  .partner-block {
    flex-direction: column;
  }
  .partner-left, .partner-right {
    padding: 64px 32px;
  }
  .partner-left h2 {
    font-size: 32px;
    max-width: none;
  }
} 

/* Calendar visual tweak */
.hero-visual .calendar {
  transform: translate(60px, 40px);
} 

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes arrowPulse {
  0% { transform: translateX(0); }
  50% { transform: translateX(6px); }
  100% { transform: translateX(0); }
} 

.process-img.variant-1 {
  background: #d0c0ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-img.variant-2 {
  background: #231f23;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-img.variant-3 {
  background: #d0c0ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-img.variant-4 {
  background: #231f23;
}

.export-card { width: 90%; border-radius: 8px; overflow: hidden; }
.export-top { height: 40px; background: #231f23; }
.export-grid { display: grid; grid-template-columns: repeat(7, 1fr); }
.cell { height: 40px; border: 1px solid #e0ded8; }
.cell.header { background: #f5f2ec; font-size: 10px; text-align:center; line-height:40px; font-weight:600; letter-spacing:0.05em; text-transform:uppercase; }
.cell.beige { background:#f5f2ec; }
.cell.purple { background:#ceb8ff; }

.comm-card {
  width: 90%;
  transform: scale(0.8);
  transform-origin: center;
  margin-top: 20px;
  border-radius: 8px;
  overflow: hidden;
  font-family: inherit;
}
.comm-top {
  background: #231f23;
  color: #c0c0c4;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 12px;
}
.comm-body {
  background: #ffffff;
  padding: 16px 24px;
  color: #1d1d1f;
  font-size: 11px;
  line-height: 1.4;
}
.comm-body p + p { margin-top: 16px; }
.comm-left, .comm-right { display: flex; align-items: center; gap: 6px; }

.scrape-block {
  width: 90%;
  border-radius: 8px;
  overflow: hidden;
}
.scrape-top {
  height: 40px;
  background: #231f23;
}
.scrape-inner {
  background: #f5f2ec;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #1d1d1f;
}
.scrape-section {
  padding: 12px 20px 4px;
}
.scrape-row {
  background: #f5f2ec;
  padding: 10px 20px;
  color: #6c6c70;
  border-top: 1px solid #e0ded8;
}

.icp-stack {
  width: 90%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.icp-card {
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 12px;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.icon-square {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.icon-square.purple { background: #ceb8ff; color: #000; }
.icon-square.black { background: #000000; color: #ffffff; }
.icon-square.beige { background: #f5f2ec; color: #000; } 

.export-grid .cell { background:#f5f2ec; } 
.export-grid .cell.purple { background:#ceb8ff !important; } 

.modal{display:none;position:fixed;inset:0;z-index:1000;font-family:inherit}
.modal.show{display:block}
.modal-overlay{position:absolute;inset:0;background:rgba(0,0,0,0.6)}
.modal-card{position:relative;max-width:640px;margin:60px auto;background:#fff;border-radius:20px;padding:40px 48px;box-shadow:0 8px 40px rgba(0,0,0,0.2);}
.modal-close{position:absolute;top:18px;right:18px;background:none;border:none;font-size:24px;cursor:pointer;color:#1d1d1f}
.modal-title{font-size:24px;font-weight:600;margin-bottom:32px}
.modal-form{display:flex;flex-direction:column;gap:20px}
.form-row{display:grid;grid-template-columns:24px 160px 1fr;align-items:center;gap:12px}
.form-row.textarea{grid-template-columns:24px 160px 1fr}
.star{color:#e13d3d;font-size:18px;line-height:0}
.modal-form input,.modal-form textarea{width:100%;padding:12px 14px;border:1px solid #d0d0d0;border-radius:6px;font:inherit}
.consent{font-size:12px;color:#444;display:flex;gap:8px;align-items:flex-start;border:1px solid #e0e0e0;border-radius:8px;padding:16px}
.required-consent .star{display:none}
.submit-full{width:100%;margin-top:12px} 

.toast{position:fixed;bottom:40px;left:50%;transform:translateX(-50%);background:#1d1d1f;color:#fff;padding:14px 24px;border-radius:8px;font-size:14px;opacity:0;pointer-events:none;transition:opacity .3s ease,transform .3s ease}.toast.show{opacity:1;transform:translate(-50%,-8px);} 

/* -------------------- Pricing Section -------------------- */
.pricing {
  padding: 96px 32px;
  max-width: 1240px;
  margin: 0 auto;
}

.pricing-cards {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.pricing-card {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  padding: 32px 24px;
  flex: 1 1 300px;
  max-width: 360px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
}

.pricing-card.recommended {
  border-color: #7a75ff;
}

.pricing-card.recommended .badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #7a75ff;
  color: #ffffff;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.plan-name {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 6px;
}

.plan-subtitle {
  font-size: 15px;
  color: #6c6c70;
  margin-bottom: 32px;
  min-height: 48px;
}

.plan-price {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #1d1d1f;
}

.plan-price .per {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #6c6c70;
}

.plan-price.large {
  font-size: 32px;
  font-weight: 500;
}

.btn-plan {
  margin: 24px 0;
  text-align: center;
  background: #ffffff;
  border: 2px solid #d0c0ff;
  color: #1d1d1f;
  border-radius: 12px;
  padding: 16px 0;
  font-weight: 600;
  display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-plan.primary {
  background: linear-gradient(90deg, #948bff, #d0c0ff);
  border-color: transparent;
  color: #ffffff;
}

.btn-plan:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.btn-plan:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
}

.plan-features {
  margin-top: 24px;
  list-style: none;
  padding-left: 0;
}

.plan-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  margin-bottom: 12px;
  color: #454545;
}

.plan-features li::before {
  content: "";
  width: 9px;
  height: 5px;
  border-left: 2px solid #454545;
  border-bottom: 2px solid #454545;
  transform: rotate(-45deg);
  margin-top: 4px;
  flex-shrink: 0;
}

.plan-features strong {
  font-weight: 600;
}

@media (max-width: 900px) {
  .pricing-cards {
    flex-direction: column;
    align-items: stretch;
  }
} 

.pricing-title {
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 48px;
  text-align: center;
  color: #1d1d1f;
} 