/* Override CSS - Custom styles for pages using Webflow styling */

/* ============================================
   Home Page Hero Section Padding
   Total top padding from h1 to viewport top should be 5.5rem
   - .section-home-hero-v1: 1.5rem (defined in mwd.webflow.css)
   - .hero-container-v1: 4rem (added here)
   ============================================ */
.section-home-hero-v1 .hero-container-v1 {
  padding-top: 4rem;
}

@media screen and (max-width: 991px) {
  /* On tablet/mobile, section padding is 0, container keeps 4rem */
  .section-home-hero-v1 .hero-container-v1 {
    padding-top: 4rem;
  }
}

/* ============================================
   Logos Marquee Animation - Reusable Component
   ============================================ */
.logos-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  mix-blend-mode: luminosity;
  margin-left: auto;
  margin-right: auto;
}

.logos-marquee__track {
  display: flex;
  width: max-content;
  animation: logosMarqueeScroll 28s linear infinite;
  will-change: transform;
}

.logos-marquee__group {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-right: 2.5rem;
  flex: 0 0 auto;
}

.logos-marquee .logo-image-wrapper {
  flex: 0 0 auto;
  width: auto;
}

.logos-marquee .logo-image {
  filter: grayscale(100%);
}

@keyframes logosMarqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logos-marquee__track {
    animation: none;
    overflow-x: auto;
    scroll-behavior: auto;
  }
}

/* ============================================
   Download Page Specific Styles
   ============================================ */
.download-hero-section {
  padding-top: 5.5rem;
  padding-bottom: 3rem;
}

.download-card {
  border: 1px solid var(--colors--border-grey);
  background-color: var(--colors--white);
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 1px 1px #e5e5e5;
}

.download-card-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.download-buttons-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.download-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--colors--blue);
  color: var(--colors--white);
  border: 1px solid var(--colors--blue);
  border-radius: 8px;
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

  .download-button:hover {
    opacity: 0.9;
  }

.download-button-icon {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}

.download-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.download-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.download-image {
  max-width: 100%;
  height: auto;
}

.archive-link {
  color: var(--colors--blue);
  font-weight: 500;
  text-decoration: none;
}

  .archive-link:hover {
    text-decoration: underline;
  }

/* Mobile Client Section */
.mobile-section {
  /* No background color */
}

.mobile-buttons-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.mobile-store-button img {
  height: 3rem;
  width: auto;
}

/* Help Section */
.help-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.help-image-wrapper {
  text-align: center;
}

.help-image {
  max-width: 100%;
  height: auto;
}

/* Server Section */
.server-section {
  text-align: center;
}

.server-buttons-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

/* Companies/Logos Section for Download Page */
.download-logos-section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/* Responsive Styles for Download Page */
@media screen and (max-width: 991px) {
  .download-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

    .download-grid .download-image-wrapper {
      order: -1;
    }

  .help-section-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

    .help-section-grid .help-image-wrapper {
      order: -1;
    }
}

/* Page-specific styles for Data Sovereignty features section */
.ds-features-section .education-pricing-card {
  align-items: center;
}

.ds-features-section .education-pricing-left,
.ds-features-section .education-pricing-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Remove background from Why MyWorkDrive cards */
.ds-why-section .testimonial-card-v3 {
  background-color: transparent;
}

/* 3-column grid for compliance initiatives section */
.ds-compliance-section .compliance-logos-grid {
  grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 767px) {
  .download-hero-section {
    padding-top: 3rem;
    padding-bottom: 2rem;
  }

  .download-card {
    padding: 1.5rem;
  }

  .download-buttons-wrap {
    flex-direction: column;
  }

  .download-button {
    width: 100%;
    justify-content: center;
  }

  .mobile-buttons-wrap {
    justify-content: center;
  }

  .server-buttons-wrap {
    flex-direction: column;
    align-items: center;
  }

    .server-buttons-wrap .button {
      width: 100%;
      max-width: 300px;
    }
}

/* ============================================
   Form Styles - Reusable Component
   ============================================ */
.form-card {
  background-color: var(--colors--white);
  border: 1px solid var(--colors--border-grey);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

  .form-group.full-width {
    grid-column: 1 / -1;
  }

  .form-group label {
    color: var(--colors--black);
    font-size: 0.875rem;
    font-weight: 500;
  }

.form-input {
  border: 1px solid var(--colors--border-grey);
  background-color: var(--colors--white);
  color: var(--colors--black);
  border-radius: 8px;
  height: 3rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

  .form-input:focus {
    outline: none;
    border-color: var(--colors--blue);
  }

  .form-input::placeholder {
    color: var(--colors--grey);
  }

.form-divider {
  border: none;
  border-top: 1px solid var(--colors--border-grey);
  margin: 1.5rem 0;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

  .form-check input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.125rem;
    accent-color: var(--colors--blue);
    flex-shrink: 0;
  }

  /* Hide the hidden input generated by ASP.NET for checkbox */
  .form-check input[type="hidden"] {
    display: none;
  }

  .form-check label {
    font-weight: 400;
    color: var(--colors--grey);
    font-size: 0.875rem;
    line-height: 1.5;
  }

  .form-check a {
    color: var(--colors--blue);
    text-decoration: none;
  }

    .form-check a:hover {
      text-decoration: underline;
    }

.form-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.login-link {
  color: var(--colors--grey);
  font-size: 0.875rem;
}

  .login-link a {
    color: var(--colors--blue);
    text-decoration: none;
  }

    .login-link a:hover {
      text-decoration: underline;
    }

.text-danger {
  color: #dc3545;
  font-size: 0.75rem;
}

.form-message {
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

  .form-message.success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
  }

  .form-message.error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
  }

  .form-message h5 {
    color: var(--colors--black);
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
  }

  .form-message p {
    margin-bottom: 0.5rem;
  }

    .form-message p:last-child {
      margin-bottom: 0;
    }

  .form-message a {
    color: var(--colors--blue);
  }

/* Honeypot field - hide from users but visible to bots */
.required.sbmrd {
  height: 0 !important;
  width: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none;
  opacity: 0;
}

/* ============================================
   Contact Page Specific Styles
   ============================================ */
.section-contact-hero {
  padding-top: 1.5rem;
  padding-bottom: 0;
}

  .section-contact-hero .padding-section-medium {
    padding-top: 4rem;
    padding-bottom: 0;
  }

/* About page hero should match Contact page hero padding (source of truth) */
.section-about-hero {
  padding-top: 1.5rem;
  padding-bottom: 0;
}

  .section-about-hero .padding-section-medium {
    padding-top: 4rem;
    padding-bottom: 0;
  }

@media screen and (max-width: 991px) {
  .section-contact-hero {
    padding-top: 0;
  }

    .section-contact-hero .padding-section-medium {
      padding-top: 4rem;
    }

  .section-about-hero {
    padding-top: 0;
  }

    .section-about-hero .padding-section-medium {
      padding-top: 4rem;
    }
}

.section-contact-info {
  padding-top: 0;
}

  .section-contact-info .padding-section-medium {
    padding-top: 2rem;
  }

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.contact-card {
  border: 1px solid var(--colors--border-grey);
  background-color: var(--colors--card-grey);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  box-shadow: 0 1px 1px #e5e5e5;
}

.contact-card-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

.contact-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

  .contact-card-icon svg {
    width: 40px;
    height: 40px;
  }

.contact-card-title {
  margin: 0;
}

.contact-card-content {
  display: flex;
  flex-direction: column;
}

.contact-map-link {
  display: block;
  transition: opacity 0.2s ease;
}

  .contact-map-link:hover {
    opacity: 0.9;
  }

.contact-map-image {
  width: 100%;
  border-radius: 16px;
}

.section-contact-map {
  padding-top: 0;
}

/* Contact page - Google Maps iframe */
#google-map {
  max-width: 100%;
  height: 450px;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 1.5rem;
}

/* Responsive Styles for Contact Page */
@media screen and (max-width: 991px) {
  .section-contact-hero {
    padding-top: 0;
  }

    .section-contact-hero .padding-section-medium {
      padding-top: 4rem;
    }

  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
    max-width: 30rem;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-card {
    padding: 1.5rem;
  }
}

/* ============================================
   About Page Specific Styles
   ============================================ */

/* What Makes Us Different - responsive grid
   Desktop: 4 columns
   <=991px: 2 columns
   <=767px: 1 column */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

@media screen and (max-width: 991px) {
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* About: Our Location section - show text before image on tablet and below */
  .section-about-location .story-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

    .section-about-location .story-grid > :nth-child(2) {
      grid-row: 1;
    }

    .section-about-location .story-grid > :first-child {
      grid-row: 2;
    }
}

@media screen and (max-width: 767px) {
  .why-us-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Pricing Page Specific Styles
   ============================================ */
.section-pricing-hero {
  padding-top: 1.5rem;
  padding-bottom: 0;
}

  .section-pricing-hero .padding-section-medium {
    padding-top: 4rem;
  }

@media screen and (max-width: 991px) {
  .section-pricing-hero {
    padding-top: 0;
  }
}

/* Pricing Tabs */
.pricing-tabs-wrapper {
  display: flex;
  justify-content: center;
}

.pricing-tabs {
  display: inline-flex;
  background-color: var(--colors--card-grey);
  border-radius: 8px;
  padding: 0.25rem;
  gap: 0.25rem;
}

.pricing-tab {
  background-color: transparent;
  border: none;
  border-radius: 6px;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--colors--grey);
  cursor: pointer;
  transition: all 0.2s ease;
}

  .pricing-tab:hover {
    color: var(--colors--black);
  }

  .pricing-tab.active {
    background-color: var(--colors--white);
    color: var(--colors--black);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }

/* Pricing Tab Panes */
.pricing-tab-content {
  width: 100%;
}

.pricing-tab-pane {
  display: none;
}

  .pricing-tab-pane.active {
    display: block;
  }

/* Pricing Grid - 2 column for monthly */
.pricing-grid-2col {
  grid-template-columns: repeat(2, 1fr);
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .pricing-grid-2col {
    grid-template-columns: 1fr;
  }
}

/* Pricing card centered content */
.pricing-card-content-card-v3.text-align-center .pricing-card-content-v2 {
  align-items: center;
}

.pricing-card-content-card-v3.text-align-center .pricing-number-wrap {
  justify-content: center;
}

.pricing-card-content-card-v3.text-align-center .button-2 {
  width: 100%;
}

/* Enterprise CTA Card */
.enterprise-cta-card {
  border: 1px solid var(--colors--border-grey);
  background-color: var(--colors--card-grey);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 1px 1px #e5e5e5;
}

.enterprise-cta-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.enterprise-cta-left {
  display: flex;
  flex-direction: column;
}

.enterprise-cta-right {
  display: flex;
  flex-direction: column;
}

.enterprise-links-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.enterprise-marketplace-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--colors--blue);
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

  .enterprise-marketplace-link:hover {
    opacity: 0.8;
  }

  .enterprise-marketplace-link svg {
    width: 1rem;
    height: 1rem;
  }

@media screen and (max-width: 991px) {
  .enterprise-cta-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .enterprise-cta-left {
    text-align: center;
    align-items: center;
  }
}

@media screen and (max-width: 767px) {
  .enterprise-cta-card {
    padding: 1.5rem;
  }

  .enterprise-links-wrap {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ============================================
   Features Comparison Table Styles
   ============================================ */
.features-comparison-card {
  border: 1px solid var(--colors--border-grey);
  background-color: var(--colors--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 1px 1px #e5e5e5;
}

.features-comparison-table-wrap {
  overflow-x: auto;
}

.features-comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 0.75rem;
}

.features-comparison-th {
  padding: 1rem;
  text-align: left;
  vertical-align: middle;
}

  .features-comparison-th.text-align-center {
    text-align: center;
  }

.features-comparison-td {
  padding: 0.75rem 1rem;
  vertical-align: middle;
}

.features-comparison-section-header {
  padding: 1.5rem 1rem 0.5rem;
  border-top: 1px solid var(--colors--border-grey);
  text-align: left;
}

  .features-comparison-section-header:first-child {
    border-top: none;
    padding-top: 0.5rem;
  }

.features-comparison-table svg {
  display: inline-block;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .features-comparison-card {
    padding: 1rem;
  }

  .features-comparison-th,
  .features-comparison-td {
    padding: 0.5rem;
    font-size: 0.875rem;
  }
}

/* ============================================
   Licensing FAQ Styles
   ============================================ */
.licensing-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.licensing-faq-image-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.licensing-faq-image {
  width: 100%;
  max-width: 100%;
  border-radius: 16px;
}

.licensing-faq-content {
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 991px) {
  .licensing-faq-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .licensing-faq-image-wrap {
    order: -1;
    max-width: 30rem;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ============================================
   Home Page Benefits Section - Mobile Cards
   Also used by Compliance page for mobile feature cards
   ============================================ */
/* Mobile benefit/feature cards - hidden on desktop */
.mobile-benefit-cards,
.mobile-feature-cards {
  display: none;
}

.mobile-benefit-card,
.mobile-feature-card {
  background-color: #F5F4F1;
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

  .mobile-benefit-card:last-child,
  .mobile-feature-card:last-child {
    margin-bottom: 0;
  }

.mobile-benefit-card-header,
.mobile-feature-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.mobile-benefit-card-title,
.mobile-feature-card-title {
  color: #272727;
  font-family: Poppins, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0;
}

.mobile-benefit-card-description,
.mobile-feature-card-description {
  color: #868c98;
  font-family: Inter, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

.mobile-benefit-card-image,
.mobile-feature-card-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 0 auto 1rem;
  display: block;
  border-radius: 8px;
}

@media screen and (max-width: 991px) {
  /* Hide the interactive selector on mobile */
  .section-benefits .benefits-row-gray {
    display: none;
  }

  /* Show mobile benefit/feature cards */
  .mobile-benefit-cards,
  .mobile-feature-cards {
    display: block;
  }
}

/* ============================================
   Compliance Page Specific Styles
   ============================================ */
.compliance-page .section-feature-hero-v2 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

  .compliance-page .section-feature-hero-v2 .padding-section-medium {
    padding-top: 4rem;
    padding-bottom: 0;
  }

.compliance-page .section-logos .padding-section-medium {
  padding-top: 4rem;
}

/* Compliance Standards Grid */
.compliance-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 6rem;
  align-items: center;
}

  .compliance-row.reverse {
    grid-template-columns: 1fr 1.5fr;
  }

.compliance-image-card {
  background-color: #F5F4F1;
  border-radius: 16px;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

  .compliance-image-card img {
    width: 50%;
    height: auto;
  }

/* Compliance page benefits section adjustments */
.compliance-page .benefits-row-gray .benefits-content,
.compliance-page .benefits-row-gray .benefits-list {
  width: 50%;
  flex: none;
}

/* Compliance page bottom banner adjustments */
.compliance-page .section-bottom-banner .bottom-section-content {
  width: 65% !important;
}

.compliance-page .section-bottom-banner .bottom-section-image {
  width: 40% !important;
  padding: 2rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

  .compliance-page .section-bottom-banner .bottom-section-image img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
  }

/* Compliance page responsive styles */
@media screen and (max-width: 991px) {
  .compliance-row,
  .compliance-row.reverse {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

    .compliance-row .compliance-image-card {
      order: -1;
      max-width: 300px;
      margin: 0 auto;
    }

  /* Hide the interactive selector on mobile for compliance page */
  .compliance-page .benefits-row-gray {
    display: none;
  }

  .compliance-page .section-bottom-banner .bottom-section-content,
  .compliance-page .section-bottom-banner .bottom-section-image {
    width: 100% !important;
  }
}

/* ============================================
   Education Page Specific Styles
   ============================================ */
.education-page .section-feature-hero-v2 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

  .education-page .section-feature-hero-v2 .padding-section-medium {
    padding-top: 4rem;
    padding-bottom: 0;
  }

/* Education Pricing Section */
.section-education-pricing {
  /* No background color */
}

.education-pricing-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

/* Left side - Image and headline */
.education-pricing-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.education-pricing-offer-card {
  background-color: #F5F4F1;
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.education-pricing-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

  .education-pricing-image img {
    max-width: 100%;
    height: auto;
  }

/* Right side - Benefit cards and support text */
.education-pricing-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

  .education-pricing-right > p:last-child {
    margin-top: auto;
    flex-grow: 1;
    display: flex;
    align-items: flex-end;
  }

.education-pricing-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.education-pricing-benefit-card {
  background-color: var(--colors--white);
  border: 1px solid var(--colors--border-grey);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.education-pricing-benefit-card-wide {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
}

.education-pricing-benefit-icon {
  width: 40px;
  height: 40px;
  background-color: var(--colors--card-grey);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

  .education-pricing-benefit-icon svg {
    width: 24px;
    height: 24px;
  }

/* Education Benefits List (for discount section) */
.education-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.education-benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--colors--black);
  font-family: Inter, sans-serif;
  font-size: 1rem;
}

  .education-benefit-item svg {
    flex-shrink: 0;
  }

/* Education Benefits Row (two columns: features list + image) */
.education-benefits-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}

.education-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.education-benefits-image {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: sticky;
  top: 2rem;
}

  .education-benefits-image img {
    max-width: 100%;
    height: auto;
  }

/* Education Feature Card (single row with icon + text) */
.education-feature-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
}

.education-feature-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Education page responsive styles */
@media screen and (max-width: 991px) {
  .education-page .section-feature-hero-v2 {
    padding-top: 0;
  }

  .education-pricing-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .education-pricing-image {
    max-width: 400px;
    margin: 0 auto;
  }

  .education-pricing-headline {
    text-align: center;
  }

  .education-benefits-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .education-benefits-image {
    order: -1;
    max-width: 300px;
    margin: 0 auto;
    position: static;
  }
}

@media screen and (max-width: 767px) {
  .education-pricing-benefits {
    grid-template-columns: 1fr;
  }

  .education-pricing-benefit-card-wide {
    grid-column: auto;
  }

  .education-feature-card {
    padding: 0.5rem 0;
  }
}

/* Education page testimonial cards styling */
.education-page .testimonial-card-v3 {
  background-color: #F5F4F1;
  border: none;
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  height: 100%;
  box-sizing: border-box;
}

  .education-page .testimonial-card-v3 .text-size-medium-grey {
    margin-top: auto;
    flex: none;
  }

.education-page .testimonial-component-v3 {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
  align-items: start;
}

.education-page .testimonial-left-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}

.education-page .testimonial-arrows {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-start;
}

  .education-page .testimonial-arrows .slider-arrow {
    position: static;
    cursor: pointer;
    margin-left: 0;
    margin-right: 0;
    transform: none;
    inset: auto;
  }

.education-page .testimonial-component-right-v3 {
  width: 100%;
  overflow: hidden;
}

/* Education Carousel */
.education-carousel-wrapper {
  width: 100%;
  overflow: hidden;
}

.education-carousel-track {
  display: flex;
  transition: transform 0.3s ease;
}

.education-carousel-slide {
  flex: 0 0 33.333%;
  padding-right: 0.75rem;
  box-sizing: border-box;
}

  .education-carousel-slide .testimonial-card-v3 {
    height: 100%;
    min-height: 180px;
  }

.ds-why-section .testimonial-card-v3 {
  background-color: transparent;
}

.education-page .education-benefit-icon {
  flex-shrink: 0;
}

@media screen and (max-width: 991px) {
  .education-page .testimonial-component-v3 {
    grid-template-columns: 1fr;
  }

  .education-page .testimonial-left-column {
    text-align: center;
    align-items: center;
  }

  .education-page .testimonial-arrows {
    justify-content: center;
  }

  .education-carousel-slide {
    flex: 0 0 50%;
    padding-right: 0.75rem;
  }
}

@media screen and (max-width: 767px) {
  .education-carousel-slide {
    flex: 0 0 100%;
    padding-right: 0;
  }
}

/* ============================================
   Register Partner Page Specific Styles
   ============================================ */
.page-wrapper:has(.section-features #PartnerSignUpForm) .section-home-hero-v1,
.page-wrapper:has(.section-features #BookDemoForm) .section-home-hero-v1 {
  padding-top: 1.5rem;
}

  .page-wrapper:has(.section-features #PartnerSignUpForm) .section-home-hero-v1 .padding-global,
  .page-wrapper:has(.section-features #BookDemoForm) .section-home-hero-v1 .padding-global {
    padding-top: 4rem;
  }

@media screen and (max-width: 991px) {
  .page-wrapper:has(.section-features #PartnerSignUpForm) .section-home-hero-v1,
  .page-wrapper:has(.section-features #BookDemoForm) .section-home-hero-v1 {
    padding-top: 0;
  }

    .page-wrapper:has(.section-features #PartnerSignUpForm) .section-home-hero-v1 .padding-global,
    .page-wrapper:has(.section-features #BookDemoForm) .section-home-hero-v1 .padding-global {
      padding-top: 4rem;
    }
}
/* Register Partner Page - Section and Form Styles */
.register-partner-page .section-bottom-banner {
  text-align: center;
}

  .register-partner-page .section-bottom-banner .bottom-section-row {
    padding-top: 3rem;
    padding-bottom: 3rem;
    padding-left: 6rem;
    padding-right: 6rem;
  }

.register-partner-page .form-card {
  box-shadow: none;
  border: none;
}

.register-partner-page .form-row-linkedin,
.register-partner-page .form-row-company-large {
  display: flex;
  flex-wrap: wrap;
}

  .register-partner-page .form-row-linkedin .form-group,
  .register-partner-page .form-row-company-large .form-group {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
  }

@media screen and (min-width: 768px) {
  .register-partner-page .enterprise-what-is-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media screen and (max-width: 767px) {
  .register-partner-page .form-card .form-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
  }

    .register-partner-page .form-card .form-row .form-group {
      flex: 0 0 100% !important;
      max-width: 100% !important;
      width: 100% !important;
      min-width: 100% !important;
    }

  .register-partner-page .section-bottom-banner .bottom-section-row {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
/* ============================================
   Enterprise Page Specific Styles
   ============================================ */
.enterprise-page .section-feature-hero-v2 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

  .enterprise-page .section-feature-hero-v2 .padding-section-medium {
    padding-top: 4rem;
    padding-bottom: 0;
  }
/* Enterprise Hero Grid - 40/60 split with image on left */
.enterprise-hero-grid {
  grid-template-columns: 2fr 3fr;
  align-items: stretch;
}
/* Enterprise What Is Grid - 40/60 split with title on left */
.enterprise-what-is-grid {
  grid-template-columns: 2fr 3fr;
  align-items: start;
}
/* Enterprise Hero Image Card */
.enterprise-hero-image-card {
  background-color: #F5F4F1;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 2rem;
}

  .enterprise-hero-image-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
/* Enterprise page button groups */
.enterprise-page .button-group,
.enterprise-page .button-group-4 {
  display: flex;
  gap: 1rem;
  align-items: center;
}

  .enterprise-page .button-group .button,
  .enterprise-page .button-group .button-2,
  .enterprise-page .button-group-4 .button,
  .enterprise-page .button-group-4 .button-2 {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
/* Enterprise page checkpoints - two column layout */
.enterprise-page .checkpoints-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 2rem;
}

.enterprise-page .checkpoints-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

  .enterprise-page .checkpoints-wrap svg {
    flex-shrink: 0;
  }
/* Enterprise page responsive styles */
@media screen and (max-width: 991px) {
  .enterprise-page .section-feature-hero-v2 {
    padding-top: 0;
  }

  .enterprise-hero-grid,
  .enterprise-what-is-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
    /* Image above text on mobile for hero */
    .enterprise-hero-grid > :first-child {
      order: -1;
      max-width: 400px;
      margin: 0 auto;
    }

  .enterprise-hero-image-card {
    aspect-ratio: 1 / 1;
  }

  .enterprise-page .button-group,
  .enterprise-page .button-group-4 {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 767px) {
  .enterprise-page .checkpoints-grid {
    grid-template-columns: 1fr;
  }

  .enterprise-page .button-group .button,
  .enterprise-page .button-group .button-2,
  .enterprise-page .button-group-4 .button,
  .enterprise-page .button-group-4 .button-2 {
    width: 100%;
  }
}
/* ==============================================
   DataTables Styling (CMMC Compliance Page)
   ============================================== */
/* DataTables container wrapper */
.cmmc-table-wrapper {
  background: var(--colors--white);
  border: 1px solid #ECECEC;
  border-radius: 1rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

  .cmmc-table-wrapper .dataTables_wrapper,
  .cmmc-table-wrapper .dt-container {
    font-family: Inter, sans-serif;
    font-size: 0.875rem;
    width: 100%;
  }
  /* Top controls row - entries per page (left) and search (right) */
  .cmmc-table-wrapper .cmmc-table-controls-top,
  .cmmc-table-wrapper .dt-layout-row:first-child {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid #ECECEC;
  }
  /* Bottom controls row - info (left) and pagination (right) */
  .cmmc-table-wrapper .cmmc-table-controls-bottom,
  .cmmc-table-wrapper .dt-layout-row:last-child {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    gap: 1rem;
    border-top: 1px solid #ECECEC;
  }
  /* Length selector - left side */
  .cmmc-table-wrapper .dataTables_length,
  .cmmc-table-wrapper .dt-length {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 0 0 auto;
  }

    .cmmc-table-wrapper .dataTables_length label,
    .cmmc-table-wrapper .dt-length label {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin: 0;
      color: var(--colors--black);
      font-size: 0.875rem;
    }

    .cmmc-table-wrapper .dataTables_length select,
    .cmmc-table-wrapper .dt-length select {
      padding: 0.375rem 0.75rem;
      border: 1px solid #ECECEC;
      border-radius: 6px;
      font-size: 0.875rem;
      background-color: var(--colors--white);
    }
  /* Search filter - right side */
  .cmmc-table-wrapper .dataTables_filter,
  .cmmc-table-wrapper .dt-search {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 0 0 auto;
    margin-left: auto;
  }

    .cmmc-table-wrapper .dataTables_filter label,
    .cmmc-table-wrapper .dt-search label {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin: 0;
      color: var(--colors--black);
      font-size: 0.875rem;
    }

    .cmmc-table-wrapper .dataTables_filter input,
    .cmmc-table-wrapper .dt-search input {
      padding: 0.375rem 0.75rem;
      border: 1px solid #ECECEC;
      border-radius: 6px;
      font-size: 0.875rem;
      min-width: 180px;
    }

      .cmmc-table-wrapper .dataTables_filter input:focus,
      .cmmc-table-wrapper .dt-search input:focus {
        outline: none;
        border-color: #3388FF;
      }
  /* Info text - left side */
  .cmmc-table-wrapper .dataTables_info,
  .cmmc-table-wrapper .dt-info {
    color: var(--colors--grey);
    font-size: 0.875rem;
    flex: 0 0 auto;
  }
  /* Pagination - right side */
  .cmmc-table-wrapper .dataTables_paginate,
  .cmmc-table-wrapper .dt-paging {
    display: flex;
    flex: 0 0 auto;
    margin-left: auto;
  }

    .cmmc-table-wrapper .dataTables_paginate .paginate_button,
    .cmmc-table-wrapper .dt-paging .page-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 2rem;
      height: 2rem;
      padding: 0.25rem 0.5rem;
      border: 1px solid #ECECEC;
      border-radius: 6px;
      background-color: var(--colors--white);
      color: var(--colors--black);
      text-decoration: none;
      cursor: pointer;
      font-size: 0.875rem;
      margin-left: 0.25rem;
    }

      .cmmc-table-wrapper .dataTables_paginate .paginate_button:first-child {
        margin-left: 0;
      }

      .cmmc-table-wrapper .dataTables_paginate .paginate_button:hover,
      .cmmc-table-wrapper .dt-paging .page-link:hover {
        background-color: #F5F4F1;
      }

      .cmmc-table-wrapper .dataTables_paginate .paginate_button.current,
      .cmmc-table-wrapper .dt-paging .page-item.active .page-link {
        background-color: #3388FF;
        border-color: #3388FF;
        color: var(--colors--white);
      }

      .cmmc-table-wrapper .dataTables_paginate .paginate_button.disabled,
      .cmmc-table-wrapper .dt-paging .page-item.disabled .page-link {
        opacity: 0.5;
        cursor: not-allowed;
        pointer-events: none;
      }
    /* DataTables pagination nav and ul */
    .cmmc-table-wrapper .dt-paging nav {
      display: flex;
    }

    .cmmc-table-wrapper .dt-paging .pagination {
      display: flex;
      list-style: none;
      padding: 0;
      margin: 0;
      gap: 0.25rem;
    }
  /* Table container */
  .cmmc-table-wrapper .dt-layout-table {
    width: 100%;
    overflow-x: auto;
  }
  /* Table styling */
  .cmmc-table-wrapper table.dataTable {
    width: 100% !important;
    border-collapse: collapse;
    margin: 0;
    table-layout: fixed;
  }
    /* Table header - Blue background */
    .cmmc-table-wrapper table.dataTable thead th {
      background-color: #3388FF;
      color: var(--colors--white);
      font-weight: 500;
      font-size: 0.75rem;
      padding: 0.75rem 0.5rem;
      text-align: center;
      border: none;
      border-right: 1px solid rgba(255, 255, 255, 0.2);
      word-wrap: break-word;
    }
      /* First two columns left-aligned and wider */
      .cmmc-table-wrapper table.dataTable thead th:nth-child(1) {
        text-align: left;
        width: 15%;
      }

      .cmmc-table-wrapper table.dataTable thead th:nth-child(2) {
        text-align: left;
        width: 20%;
      }
      /* Middle columns */
      .cmmc-table-wrapper table.dataTable thead th:nth-child(3),
      .cmmc-table-wrapper table.dataTable thead th:nth-child(4),
      .cmmc-table-wrapper table.dataTable thead th:nth-child(5),
      .cmmc-table-wrapper table.dataTable thead th:nth-child(6) {
        width: 9%;
      }
      /* Last two columns */
      .cmmc-table-wrapper table.dataTable thead th:nth-child(7) {
        width: 10%;
      }

      .cmmc-table-wrapper table.dataTable thead th:nth-child(8) {
        width: 17%;
        border-right: none;
      }
    /* Table body */
    .cmmc-table-wrapper table.dataTable tbody td {
      padding: 0.5rem;
      border-bottom: 1px solid #ECECEC;
      border-right: 1px solid #ECECEC;
      vertical-align: middle;
      text-align: center;
      font-size: 0.75rem;
      color: var(--colors--black);
      word-wrap: break-word;
    }

      .cmmc-table-wrapper table.dataTable tbody td:nth-child(1),
      .cmmc-table-wrapper table.dataTable tbody td:nth-child(2) {
        text-align: left;
      }

      .cmmc-table-wrapper table.dataTable tbody td:last-child {
        border-right: none;
      }

    .cmmc-table-wrapper table.dataTable tbody tr:last-child td {
      border-bottom: none;
    }

    .cmmc-table-wrapper table.dataTable tbody tr:hover {
      background-color: #F8F9FA;
    }
/* Responsive */
@media screen and (max-width: 991px) {
  .cmmc-table-wrapper .cmmc-table-controls-top,
  .cmmc-table-wrapper .cmmc-table-controls-bottom,
  .cmmc-table-wrapper .dt-layout-row:first-child,
  .cmmc-table-wrapper .dt-layout-row:last-child {
    flex-direction: column;
    align-items: center;
  }

  .cmmc-table-wrapper .dataTables_length,
  .cmmc-table-wrapper .dataTables_filter,
  .cmmc-table-wrapper .dt-length,
  .cmmc-table-wrapper .dt-search {
    margin: 0;
  }

  .cmmc-table-wrapper .dataTables_info,
  .cmmc-table-wrapper .dt-info {
    text-align: center;
  }

  .cmmc-table-wrapper .dataTables_paginate,
  .cmmc-table-wrapper .dt-paging {
    margin: 0;
    justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .cmmc-table-wrapper .cmmc-table-controls-top,
  .cmmc-table-wrapper .cmmc-table-controls-bottom,
  .cmmc-table-wrapper .dt-layout-row:first-child,
  .cmmc-table-wrapper .dt-layout-row:last-child {
    padding: 0.75rem 1rem;
  }

  .cmmc-table-wrapper table.dataTable thead th,
  .cmmc-table-wrapper table.dataTable tbody td {
    padding: 0.375rem 0.25rem;
    font-size: 0.625rem;
  }

  .cmmc-table-wrapper .dataTables_filter input,
  .cmmc-table-wrapper .dt-search input {
    min-width: 120px;
  }
}
/* ============================================
   Law Firms Page Specific Styles
   ============================================ */
.law-firms-faq-grid.licensing-faq-grid {
  grid-template-columns: 40% 60%;
}

.law-firms-check-title {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

  .law-firms-check-title svg {
    flex-shrink: 0;
    width: 12px;
    height: 12px;
  }

.law-firms-check-description {
  padding-left: 20px;
}

.law-firms-bottom-grid.bottom-section-row .bottom-section-content {
  flex: 0 0 40%;
}

.law-firms-bottom-grid.bottom-section-row .bottom-section-image {
  flex: 0 0 60%;
}

@media screen and (max-width: 991px) {
  .law-firms-faq-grid.licensing-faq-grid {
    grid-template-columns: 1fr;
  }

  .law-firms-bottom-grid.bottom-section-row .bottom-section-content,
  .law-firms-bottom-grid.bottom-section-row .bottom-section-image {
    flex: 0 0 100%;
  }
}

/* ============================================
   Azure Blob Storage Page Specific Styles
   ============================================ */
.azure-blob-connect-grid {
  align-items: center;
}

/* ============================================
   Compliance Logos Grid Section
   ============================================ */
.compliance-logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.compliance-logo-card {
  border: 1px solid #ECECEC;
  border-radius: 16px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

  .compliance-logo-card img {
    width: 50%;
    height: auto;
  }

  .compliance-logo-card.large img {
    width: 80%;
  }

@media screen and (max-width: 991px) {
  .compliance-logos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .compliance-logos-grid {
    grid-template-columns: 1fr;
  }
}

/* 5-column responsive grid for compliance logos */
.compliance-logos-grid-5col {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

@media screen and (max-width: 1200px) {
  .compliance-logos-grid-5col {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 991px) {
  .compliance-logos-grid-5col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .compliance-logos-grid-5col {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   CMMC Compliance Page - Feature Cards
   ============================================ */
.cmmc-cards-row {
  display: grid;
  gap: 24px;
  margin-bottom: 24px;
}

  .cmmc-cards-row.two-col {
    grid-template-columns: 1fr 1fr;
  }

  .cmmc-cards-row.one-col {
    grid-template-columns: 1fr;
  }

  .cmmc-cards-row:last-child {
    margin-bottom: 0;
  }

.cmmc-card {
  background-color: #F5F4F1;
  border-radius: 16px;
  padding: 32px;
}

  .cmmc-card ul {
    margin-top: 12px;
  }

@media screen and (max-width: 767px) {
  .cmmc-cards-row.two-col {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Edit Files Office Online Page Specific Styles
   ============================================ */
/* Hero section button group */
.education-page .section-feature-hero-v2 .button-group {
  display: flex;
  gap: 1rem;
  align-items: center;
}

  .education-page .section-feature-hero-v2 .button-group .button,
  .education-page .section-feature-hero-v2 .button-group .button-2 {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

/* Why This Matters section - two equal columns */
.efoo-why-matters-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Override education-page testimonial card styling for Why This Matters cards */
.education-page .efoo-why-matters-grid .testimonial-card-v3 {
  background: transparent;
  border: 1px solid #ECECEC;
  border-radius: 16px;
  height: 100%;
  gap: 0.5rem;
  align-items: flex-start;
  justify-content: flex-start;
}

  .education-page .efoo-why-matters-grid .testimonial-card-v3 .text-size-large {
    margin: 0;
  }

  .education-page .efoo-why-matters-grid .testimonial-card-v3 ul {
    margin: 0;
    padding-left: 1.25rem;
  }

@media (max-width: 991px) {
  .efoo-why-matters-grid {
    grid-template-columns: 1fr;
  }
}
/* Where Teams Use It section - card styling */
.efoo-where-teams-grid .testimonial-card-v3 {
  border: 1px solid #ECECEC;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

  .efoo-where-teams-grid .testimonial-card-v3 .education-benefit-icon {
    margin-bottom: auto;
  }

  .efoo-where-teams-grid .testimonial-card-v3 .text-size-medium,
  .efoo-where-teams-grid .testimonial-card-v3 .text-size-medium-grey {
    margin-top: 0;
  }

  .efoo-where-teams-grid .testimonial-card-v3 .spacer-medium,
  .efoo-where-teams-grid .testimonial-card-v3 .spacer-small {
    display: none;
  }
/* Bottom CTA Section - two column layout */
.efoo-bottom-cta .bottom-section-grid {
  display: block;
  width: 100%;
}

.efoo-bottom-cta .bottom-section-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.efoo-bottom-cta .bottom-section-content {
  flex: 1 1 45%;
  min-width: 300px;
}

.efoo-bottom-cta .bottom-section-image {
  flex: 1 1 45%;
  min-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

  .efoo-bottom-cta .bottom-section-image img {
    max-width: 100%;
    max-height: 300px;
    width: auto;
    height: auto;
    object-fit: contain;
  }

@media (max-width: 767px) {
  .efoo-bottom-cta .bottom-section-row {
    flex-direction: column;
  }

  .efoo-bottom-cta .bottom-section-content,
  .efoo-bottom-cta .bottom-section-image {
    flex: 1 1 100%;
    min-width: 100%;
  }
}
/* ============================================
   Preview & Previous Builds Page Styles
   ============================================ */
.builds-table-wrapper {
  background-color: var(--base--white);
  border-radius: 16px;
  border: 1px solid #ECECEC;
  padding: 1.5rem 2rem;
  overflow-x: auto;
}

.builds-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

  .builds-table thead {
    border-bottom: 1px solid #ECECEC;
  }

.builds-table-header {
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text--text-primary);
  text-align: center;
}

  .builds-table-header:first-child {
    text-align: left;
  }

.builds-table-row {
  transition: background-color 0.2s ease;
}

  .builds-table-row:hover {
    background-color: var(--background--bg-secondary);
  }

.builds-table-cell {
  padding: 1rem;
  font-size: 0.9375rem;
  color: var(--text--text-secondary);
  vertical-align: middle;
  text-align: center;
}

  .builds-table-cell:first-child {
    text-align: left;
  }

.builds-download-form {
  display: inline-block;
}

.builds-download-icon {
  margin-left: 0.5rem;
  width: 1rem;
  height: 1rem;
  vertical-align: middle;
  filter: brightness(0) invert(1);
}

.button.is-small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 991px) {
  .builds-table-wrapper {
    padding: 1rem;
  }

  .builds-table-header,
  .builds-table-cell {
    padding: 0.75rem 0.5rem;
    font-size: 0.875rem;
  }
}

/* ============================================
   How It Works Section - Consistent Card Alignment
   ============================================ */
.product-grid {
  align-items: stretch;
}

.product-card {
  justify-content: flex-start;
}

.product-card-image-wrapper-v1 {
  min-height: 180px;
  height: 180px;
  flex-shrink: 0;
}

.product-card-content-v1 {
  flex-grow: 1;
  justify-content: flex-start;
}

@media screen and (max-width: 991px) {
  .product-card-image-wrapper-v1 {
    min-height: 150px;
    height: 150px;
  }
}

@media screen and (max-width: 479px) {
  .product-card-image-wrapper-v1 {
    min-height: 120px;
    height: 120px;
  }
}


/* ============================================
   Why Choose MyWorkDrive - Benefits List Hover
   ============================================ */
.section-benefits .benefits-list .list-item {
  transition: background-color 0.2s ease;
  cursor: pointer;
  background-color: transparent !important;
}

/* ============================================
   Education Pricing Cards - Feature sections
   (Architecture Options, Flexible Storage, etc.)
   ============================================ */
.education-pricing-card .education-pricing-left,
.education-pricing-card .education-pricing-right {
  padding: 2rem;
  display: block;
  text-align: left;
}

  .education-pricing-card .education-pricing-left > *,
  .education-pricing-card .education-pricing-right > * {
    text-align: left;
  }

.section-benefits .benefits-list .list-item:hover {
  background-color: #F5F4F1 !important;
}

.section-benefits .benefits-list .list-item.is-active,
.section-benefits .benefits-list .list-item.is-active:hover {
  background-color: #F5F4F1 !important;
}

/* ============================================
   Key Features Section - Home Page Carousel
   Display one main card with partial side cards visible
   ============================================ */
.section-features .features-slider {
  width: 100%;
  overflow: visible;
}

.section-features .features-mask {
  width: 60%;
  margin: 0 auto;
  overflow: visible;
}

.section-features .features-slide {
  width: 100% !important;
  padding: 0 1rem;
}

.section-features .featiures-card {
  min-height: 320px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
  height: 100%;
}

  .section-features .featiures-card .text-size-large {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: left;
  }

  .section-features .featiures-card .text-size-medium-grey {
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
  }

  /* Testimonial text and client info - left aligned */
  .section-features .featiures-card .text-size-small-grey {
    text-align: left;
    flex-grow: 1;
    max-height: 200px;
  }

  .section-features .featiures-card .testimonial-client-info {
    text-align: left;
    margin-top: auto;
    padding-top: 1.5rem;
    flex-shrink: 0;
  }

  .section-features .featiures-card .features-learn-more {
    margin-top: 1.5rem;
  }

/* Medium Screen Adjustment */
@media screen and (min-width: 992px) and (max-width: 1110px) {
  .section-features .features-mask {
    width: 65%;
    height: 480px;
  }

  .section-features .featiures-card {
    min-height: 280px;
    padding: 2rem;
  }
}

/* Tablet */
@media screen and (max-width: 991px) {
  .section-features .features-mask {
    width: 75%;
  }

  .section-features .featiures-card {
    min-height: 260px;
    padding: 1.5rem;
  }

    .section-features .featiures-card .text-size-large {
      font-size: 1.25rem;
    }

    .section-features .featiures-card .text-size-medium-grey,
    .section-features .featiures-card .text-size-small-grey {
      font-size: 0.9375rem;
    }
}

/* Small Tablet - increased height for longer testimonial text */
@media screen and (max-width: 980px) {
  .section-features .features-mask {
    height: 580px;
  }

  .section-features .featiures-card {
    height: 560px;
    min-height: auto;
  }
}

/* Small screens - further increased height for longer testimonial text */
@media screen and (max-width: 730px) {
  .section-features .features-mask {
    height: 720px;
  }

  .section-features .featiures-card {
    height: 700px;
  }
}

/* Extra small screens - maximum height for longer testimonial text */
@media screen and (max-width: 590px) {
  .section-features .features-mask {
    height: 880px;
  }

  .section-features .featiures-card {
    height: 860px;
  }
}

/* Very small screens - maximum height for longer testimonial text */
@media screen and (max-width: 435px) {
  .section-features .features-mask {
    height: 1200px;
  }

  .section-features .featiures-card {
    height: 1180px;
  }

  .section-features .featiures-card .text-size-small-grey {
    max-height: none;
  }
}

/* Mobile */
@media screen and (max-width: 479px) {
  .section-features .features-mask {
    width: 85%;
  }

  .section-features .featiures-card {
    min-height: 220px;
    padding: 1.25rem;
  }
}
